|
5 | 5 | <parent>
|
6 | 6 | <groupId>org.jenkins-ci.plugins</groupId>
|
7 | 7 | <artifactId>plugin</artifactId>
|
8 |
| - <version>3.57</version> |
| 8 | + <version>4.54</version> |
| 9 | + <relativePath /> |
9 | 10 | </parent>
|
10 | 11 |
|
11 | 12 | <artifactId>docker-java-api</artifactId>
|
|
14 | 15 |
|
15 | 16 | <name>Docker API Plugin</name>
|
16 | 17 | <description>Plugin providing Docker API for other plugins. Wrap docker-java and required dependency for Netty transport only. JAX-RS default transport is not usable</description>
|
17 |
| - <url>https://github.com/jenkinsci/docker-java-api-plugin</url> |
| 18 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
18 | 19 |
|
19 | 20 | <scm>
|
20 |
| - <connection>scm:git:https://github.com/jenkinsci/docker-java-api-plugin.git</connection> |
21 |
| - < developerConnection>scm:git: [email protected]: jenkinsci/docker-java-api-plugin.git</ developerConnection> |
22 |
| - <url>https://github.com/jenkinsci/docker-java-api-plugin</url> |
| 21 | + <connection>scm:git:https://github.com/${gitHubRepo}.git</connection> |
| 22 | + < developerConnection>scm:git: [email protected]: ${gitHubRepo}.git</ developerConnection> |
| 23 | + <url>https://github.com/${gitHubRepo}</url> |
23 | 24 | <tag>${scmTag}</tag>
|
24 | 25 | </scm>
|
25 | 26 |
|
26 | 27 | <properties>
|
27 | 28 | <revision>3.2.13</revision>
|
28 | 29 | <changelist>999999-SNAPSHOT</changelist>
|
29 |
| - <jenkins.version>1.609.1</jenkins.version> |
30 |
| - <java.level>8</java.level> |
31 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 30 | + <jenkins.version>2.361.3</jenkins.version> |
| 31 | + <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
32 | 32 | <hpi.compatibleSinceVersion>3.2</hpi.compatibleSinceVersion>
|
33 | 33 | </properties>
|
34 | 34 |
|
35 | 35 | <licenses>
|
36 | 36 | <license>
|
37 | 37 | <name>MIT</name>
|
38 |
| - <url>http://opensource.org/licenses/MIT</url> |
| 38 | + <url>https://opensource.org/licenses/MIT</url> |
39 | 39 | </license>
|
40 | 40 | </licenses>
|
41 | 41 |
|
|
52 | 52 | </pluginRepository>
|
53 | 53 | </pluginRepositories>
|
54 | 54 |
|
| 55 | + <dependencyManagement> |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>io.jenkins.tools.bom</groupId> |
| 59 | + <artifactId>bom-2.361.x</artifactId> |
| 60 | + <version>1798.vc671fe94856f</version> |
| 61 | + <scope>import</scope> |
| 62 | + <type>pom</type> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + </dependencyManagement> |
| 66 | + |
55 | 67 | <dependencies>
|
56 | 68 | <dependency>
|
57 | 69 | <groupId>com.github.docker-java</groupId>
|
|
91 | 103 | <groupId>commons-lang</groupId>
|
92 | 104 | <artifactId>commons-lang</artifactId>
|
93 | 105 | </exclusion>
|
| 106 | + <exclusion> |
| 107 | + <groupId>org.apache.commons</groupId> |
| 108 | + <artifactId>commons-lang3</artifactId> |
| 109 | + </exclusion> |
94 | 110 | <exclusion>
|
95 | 111 | <groupId>org.slf4j</groupId>
|
96 | 112 | <artifactId>slf4j-api</artifactId>
|
|
138 | 154 | <groupId>com.github.docker-java</groupId>
|
139 | 155 | <artifactId>docker-java-transport-httpclient5</artifactId>
|
140 | 156 | <version>${revision}</version>
|
| 157 | + <exclusions> |
| 158 | + <!-- Provided by Jenkins core --> |
| 159 | + <exclusion> |
| 160 | + <groupId>net.java.dev.jna</groupId> |
| 161 | + <artifactId>jna</artifactId> |
| 162 | + </exclusion> |
| 163 | + <exclusion> |
| 164 | + <groupId>org.slf4j</groupId> |
| 165 | + <artifactId>slf4j-api</artifactId> |
| 166 | + </exclusion> |
| 167 | + </exclusions> |
| 168 | + </dependency> |
| 169 | + |
| 170 | + <dependency> |
| 171 | + <groupId>io.jenkins.plugins</groupId> |
| 172 | + <artifactId>commons-lang3-api</artifactId> |
141 | 173 | </dependency>
|
142 | 174 |
|
143 | 175 | <dependency>
|
144 | 176 | <groupId>org.jenkins-ci.plugins</groupId>
|
145 | 177 | <artifactId>jackson2-api</artifactId>
|
146 |
| - <version>2.10.3</version> |
147 | 178 | </dependency>
|
148 | 179 |
|
149 | 180 | <dependency>
|
150 | 181 | <groupId>org.hamcrest</groupId>
|
151 | 182 | <artifactId>hamcrest-core</artifactId>
|
152 |
| - <version>2.2</version> |
153 | 183 | <scope>test</scope>
|
154 | 184 | </dependency>
|
155 | 185 | <dependency>
|
156 | 186 | <groupId>org.mockito</groupId>
|
157 | 187 | <artifactId>mockito-core</artifactId>
|
158 |
| - <version>2.28.2</version> |
159 | 188 | <scope>test</scope>
|
160 | 189 | </dependency>
|
161 | 190 | </dependencies>
|
|
0 commit comments