forked from kogitant/sonar-slack-notifier-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpom.xml
155 lines (137 loc) · 5.46 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.byoskill.sonar.slack</groupId>
<artifactId>sonar-slack-notifier</artifactId>
<version>8.0.0-beta</version>
<packaging>sonar-plugin</packaging>
<name>Sonar Slack Notifier Plugin</name>
<description>Sends notifications to Slack.</description>
<properties>
<sonar.pluginName>Slack Notifier</sonar.pluginName>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<jacoco.version>0.8.5</jacoco.version>
<!-- JaCoCo support -->
<argLine />
<sonar.version>8.0</sonar.version>
<jackson-databind.version>2.10.1</jackson-databind.version>
</properties>
<scm>
<connection>scm:git:[email protected]:sleroy/sonar-slack-notifier-plugin.git</connection>
<url>scm:git:[email protected]:sleroy/sonar-slack-notifier-plugin.git</url>
<developerConnection>scm:git:[email protected]:sleroy/sonar-slack-notifier-plugin.git</developerConnection>
</scm>
<dependencies>
<!-- Dependencies provided by SonarQube server -->
<!-- https://mvnrepository.com/artifact/org.sonarsource.sonarqube/sonar-plugin-api -->
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${sonar.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
<!-- Dependencies of this plugin, not provided by SonarQube -->
<dependency>
<groupId>com.github.seratch</groupId>
<artifactId>jslack</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.2.2</version>
</dependency>
<!-- Testing dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.14.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.2.4</version>
<scope>compile</scope>
</dependency>
<!-- This is needed in tests to assert i18n behaviour -->
<dependency>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonar-core</artifactId>
<version>${sonar.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-databind.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson-databind.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.7.0.1746</version>
</plugin>
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.18.0.372</version>
<extensions>true</extensions>
<configuration>
<jarName>sonar-slack-notifier-${project.version}</jarName>
<pluginKey>sonar-slack-notifier</pluginKey>
<pluginClass>com.koant.sonar.slacknotifier.SlackNotifierPlugin</pluginClass>
<pluginName>Sonar Slack Notifier</pluginName>
<pluginDescription>Sends notifications to Slack</pluginDescription>
<sonarQubeMinVersion>8.0</sonarQubeMinVersion>
<pluginUrl>https://github.com/sleroy/sonar-slack-notifier-plugin</pluginUrl>
<pluginIssueTrackerUrl>https://github.com/sleroy/sonar-slack-notifier-plugin/issues</pluginIssueTrackerUrl>
<pluginSourcesUrl>https://github.com/sleroy/sonar-slack-notifier-plugin</pluginSourcesUrl>
<pluginOrganizationName>Sylvain Leroy</pluginOrganizationName>
<pluginOrganizationUrl>https://github.com/sleroy</pluginOrganizationUrl>
</configuration>
</plugin>
</plugins>
</build>
</project>