|
12 | 12 |
|
13 | 13 | <properties>
|
14 | 14 | <changelist>999999-SNAPSHOT</changelist>
|
15 |
| - <jenkins.version>2.462</jenkins.version> |
16 |
| - <jira-rest-client.version>5.2.6</jira-rest-client.version> |
17 |
| - <fugue.version>3.0.0</fugue.version> |
18 |
| - <spotbugs.failOnError>false</spotbugs.failOnError> |
19 |
| - <java.level>11</java.level> |
| 15 | + <jenkins.version>2.462.1</jenkins.version> |
| 16 | + <jira-rest-client.version>5.2.7</jira-rest-client.version> |
| 17 | + <fugue.version>4.7.2</fugue.version> |
20 | 18 | <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
|
| 19 | + <spotbugs.threshold>High</spotbugs.threshold> |
21 | 20 | </properties>
|
22 | 21 |
|
23 | 22 | <groupId>org.jenkins-ci.plugins</groupId>
|
|
68 | 67 | </developers>
|
69 | 68 |
|
70 | 69 | <scm>
|
71 |
| - <connection>scm:git:git://github.com/${gitHubRepo}.git</connection> |
| 70 | + <connection>scm:git:https://github.com/${gitHubRepo}.git</connection> |
72 | 71 | < developerConnection>scm:git: [email protected]: ${gitHubRepo}.git</ developerConnection>
|
73 | 72 | <url>https://github.com/${gitHubRepo}</url>
|
74 | 73 | <tag>${scmTag}</tag>
|
|
79 | 78 | <id>repo.jenkins-ci.org</id>
|
80 | 79 | <url>https://repo.jenkins-ci.org/public/</url>
|
81 | 80 | </repository>
|
82 |
| - |
83 |
| - <repository> |
84 |
| - <id>atlassian-public</id> |
85 |
| - <url>https://m2proxy.atlassian.com/repository/public</url> |
86 |
| - <snapshots> |
87 |
| - <enabled>true</enabled> |
88 |
| - <updatePolicy>daily</updatePolicy> |
89 |
| - <checksumPolicy>warn</checksumPolicy> |
90 |
| - </snapshots> |
91 |
| - <releases> |
92 |
| - <enabled>true</enabled> |
93 |
| - <checksumPolicy>warn</checksumPolicy> |
94 |
| - </releases> |
95 |
| - </repository> |
96 | 81 | </repositories>
|
97 | 82 |
|
98 | 83 | <pluginRepositories>
|
99 | 84 | <pluginRepository>
|
100 | 85 | <id>repo.jenkins-ci.org</id>
|
101 | 86 | <url>https://repo.jenkins-ci.org/public/</url>
|
102 | 87 | </pluginRepository>
|
103 |
| - |
104 |
| - <pluginRepository> |
105 |
| - <id>atlassian-public</id> |
106 |
| - <url>https://m2proxy.atlassian.com/repository/public</url> |
107 |
| - <releases> |
108 |
| - <enabled>true</enabled> |
109 |
| - <checksumPolicy>warn</checksumPolicy> |
110 |
| - </releases> |
111 |
| - <snapshots> |
112 |
| - <checksumPolicy>warn</checksumPolicy> |
113 |
| - </snapshots> |
114 |
| - </pluginRepository> |
115 | 88 | </pluginRepositories>
|
116 | 89 |
|
117 | 90 | <dependencyManagement>
|
|
145 | 118 | <artifactId>jira-rest-java-client-api</artifactId>
|
146 | 119 | <version>${jira-rest-client.version}</version>
|
147 | 120 | <exclusions>
|
| 121 | + <!-- Deprecated and not needed at runtime --> |
| 122 | + <exclusion> |
| 123 | + <groupId>com.google.code.findbugs</groupId> |
| 124 | + <artifactId>jsr305</artifactId> |
| 125 | + </exclusion> |
| 126 | + <!-- Provided by Jenkins core --> |
148 | 127 | <exclusion>
|
149 | 128 | <groupId>com.google.guava</groupId>
|
150 | 129 | <artifactId>guava</artifactId>
|
151 | 130 | </exclusion>
|
| 131 | + <!-- Provided by joda-time-api plugin --> |
| 132 | + <exclusion> |
| 133 | + <groupId>joda-time</groupId> |
| 134 | + <artifactId>joda-time</artifactId> |
| 135 | + </exclusion> |
152 | 136 | </exclusions>
|
153 | 137 | </dependency>
|
154 | 138 | <dependency>
|
|
157 | 141 | <version>${jira-rest-client.version}</version>
|
158 | 142 | <exclusions>
|
159 | 143 | <exclusion>
|
160 |
| - <groupId>org.apache.commons</groupId> |
161 |
| - <artifactId>commons-lang3</artifactId> |
| 144 | + <groupId>com.atlassian.httpclient</groupId> |
| 145 | + <artifactId>atlassian-httpclient-library</artifactId> |
| 146 | + </exclusion> |
| 147 | + <exclusion> |
| 148 | + <groupId>com.atlassian.httpclient</groupId> |
| 149 | + <artifactId>atlassian-httpclient-plugin</artifactId> |
| 150 | + </exclusion> |
| 151 | + <!-- Deprecated and not needed at runtime --> |
| 152 | + <exclusion> |
| 153 | + <groupId>com.google.code.findbugs</groupId> |
| 154 | + <artifactId>jsr305</artifactId> |
162 | 155 | </exclusion>
|
| 156 | + <!-- Provided by Jenkins core --> |
163 | 157 | <exclusion>
|
164 | 158 | <groupId>com.google.guava</groupId>
|
165 | 159 | <artifactId>guava</artifactId>
|
166 | 160 | </exclusion>
|
| 161 | + <exclusion> |
| 162 | + <groupId>commons-codec</groupId> |
| 163 | + <artifactId>commons-codec</artifactId> |
| 164 | + </exclusion> |
| 165 | + <!-- Provided by joda-time-api plugin --> |
| 166 | + <exclusion> |
| 167 | + <groupId>joda-time</groupId> |
| 168 | + <artifactId>joda-time</artifactId> |
| 169 | + </exclusion> |
| 170 | + <!-- Provided by commons-lang3-api plugin --> |
| 171 | + <exclusion> |
| 172 | + <groupId>org.apache.commons</groupId> |
| 173 | + <artifactId>commons-lang3</artifactId> |
| 174 | + </exclusion> |
| 175 | + <!-- Provided by apache-httpcomponents-client-4-api plugin --> |
| 176 | + <exclusion> |
| 177 | + <groupId>org.apache.httpcomponents</groupId> |
| 178 | + <artifactId>httpasyncclient</artifactId> |
| 179 | + </exclusion> |
| 180 | + <exclusion> |
| 181 | + <groupId>org.apache.httpcomponents</groupId> |
| 182 | + <artifactId>httpasyncclient-cache</artifactId> |
| 183 | + </exclusion> |
| 184 | + <exclusion> |
| 185 | + <groupId>org.apache.httpcomponents</groupId> |
| 186 | + <artifactId>httpclient</artifactId> |
| 187 | + </exclusion> |
| 188 | + <exclusion> |
| 189 | + <groupId>org.apache.httpcomponents</groupId> |
| 190 | + <artifactId>httpclient-cache</artifactId> |
| 191 | + </exclusion> |
| 192 | + <exclusion> |
| 193 | + <groupId>org.apache.httpcomponents</groupId> |
| 194 | + <artifactId>httpcore</artifactId> |
| 195 | + </exclusion> |
| 196 | + <exclusion> |
| 197 | + <groupId>org.apache.httpcomponents</groupId> |
| 198 | + <artifactId>httpcore-nio</artifactId> |
| 199 | + </exclusion> |
| 200 | + <exclusion> |
| 201 | + <groupId>org.apache.httpcomponents</groupId> |
| 202 | + <artifactId>httpmime</artifactId> |
| 203 | + </exclusion> |
| 204 | + <!-- Provided by jersey2-api plugin --> |
| 205 | + <exclusion> |
| 206 | + <groupId>org.codehaus.jettison</groupId> |
| 207 | + <artifactId>jettison</artifactId> |
| 208 | + </exclusion> |
| 209 | + <exclusion> |
| 210 | + <groupId>org.glassfish.jersey.core</groupId> |
| 211 | + <artifactId>jersey-client</artifactId> |
| 212 | + </exclusion> |
| 213 | + <exclusion> |
| 214 | + <groupId>org.glassfish.jersey.core</groupId> |
| 215 | + <artifactId>jersey-common</artifactId> |
| 216 | + </exclusion> |
| 217 | + <exclusion> |
| 218 | + <groupId>org.glassfish.jersey.media</groupId> |
| 219 | + <artifactId>jersey-media-jaxb</artifactId> |
| 220 | + </exclusion> |
| 221 | + <exclusion> |
| 222 | + <groupId>org.glassfish.jersey.media</groupId> |
| 223 | + <artifactId>jersey-media-json-jettison</artifactId> |
| 224 | + </exclusion> |
| 225 | + <!-- Provided by Jenkins core --> |
| 226 | + <exclusion> |
| 227 | + <groupId>org.slf4j</groupId> |
| 228 | + <artifactId>slf4j-api</artifactId> |
| 229 | + </exclusion> |
167 | 230 | <exclusion>
|
168 | 231 | <groupId>org.springframework</groupId>
|
169 | 232 | <artifactId>spring-beans</artifactId>
|
170 | 233 | </exclusion>
|
171 | 234 | <exclusion>
|
172 |
| - <groupId>javax.activation</groupId> |
173 |
| - <artifactId>activation</artifactId> |
| 235 | + <groupId>org.springframework</groupId> |
| 236 | + <artifactId>spring-core</artifactId> |
| 237 | + </exclusion> |
| 238 | + <exclusion> |
| 239 | + <groupId>org.springframework</groupId> |
| 240 | + <artifactId>spring-jcl</artifactId> |
174 | 241 | </exclusion>
|
175 | 242 | </exclusions>
|
176 | 243 | </dependency>
|
|
185 | 252 | <artifactId>apache-httpcomponents-client-4-api</artifactId>
|
186 | 253 | </dependency>
|
187 | 254 | <dependency>
|
188 |
| - <groupId>com.google.code.gson</groupId> |
189 |
| - <artifactId>gson</artifactId> |
190 |
| - <version>2.10.1</version> |
| 255 | + <groupId>io.jenkins.plugins</groupId> |
| 256 | + <artifactId>commons-lang3-api</artifactId> |
| 257 | + </dependency> |
| 258 | + <dependency> |
| 259 | + <groupId>io.jenkins.plugins</groupId> |
| 260 | + <artifactId>gson-api</artifactId> |
| 261 | + </dependency> |
| 262 | + <dependency> |
| 263 | + <groupId>io.jenkins.plugins</groupId> |
| 264 | + <artifactId>jersey2-api</artifactId> |
| 265 | + </dependency> |
| 266 | + <dependency> |
| 267 | + <groupId>io.jenkins.plugins</groupId> |
| 268 | + <artifactId>joda-time-api</artifactId> |
191 | 269 | </dependency>
|
192 | 270 |
|
193 | 271 | </dependencies>
|
|
0 commit comments