|
6 | 6 | <artifactId>plugin</artifactId> |
7 | 7 | <groupId>org.jenkins-ci.plugins</groupId> |
8 | 8 | <!-- Baseline Jenkins version you use to build and test the plugin. Users must have this version or newer to run. --> |
9 | | - <version>4.31</version> |
| 9 | + <version>4.51</version> |
10 | 10 | <relativePath /> |
11 | 11 | </parent> |
12 | 12 | <artifactId>config-driven-pipeline</artifactId> |
|
23 | 23 | <url>http://opensource.org/licenses/MIT</url> |
24 | 24 | </license> |
25 | 25 | </licenses> |
26 | | - <developers> |
27 | | - <developer> |
28 | | - <id>justinharringa</id> |
29 | | - <name>Justin Harringa</name> |
30 | | - |
31 | | - </developer> |
32 | | - <developer> |
33 | | - <id>ma3oxuct</id> |
34 | | - <name>Andrey Falko</name> |
35 | | - |
36 | | - </developer> |
37 | | - </developers> |
38 | 26 | <scm> |
39 | | - <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
| 27 | + <connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
40 | 28 | < developerConnection>scm:git: [email protected]:jenkinsci/ ${project.artifactId}-plugin.git</ developerConnection> |
41 | 29 | <url>http://github.com/jenkinsci/${project.artifactId}-plugin</url> |
42 | 30 | <tag>HEAD</tag> |
|
45 | 33 | <annotation-indexer.version>1.16</annotation-indexer.version> |
46 | 34 | <github-branch-source.version>2.4.1</github-branch-source.version> |
47 | 35 | <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> |
48 | | - <java.level>8</java.level> |
49 | 36 | <java.version>1.8</java.version> |
50 | | - <jenkins.version>2.277.4</jenkins.version> |
| 37 | + <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
| 38 | + <jenkins.baseline>2.346</jenkins.baseline> |
| 39 | + <jenkins.version>${jenkins.baseline}.3</jenkins.version> |
51 | 40 | <junit.version>4.13.2</junit.version> |
52 | 41 | <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
53 | 42 | <pipeline-utility-steps-test.version>2.11.0</pipeline-utility-steps-test.version> |
|
107 | 96 | <dependency> |
108 | 97 | <groupId>org.jenkins-ci.plugins.workflow</groupId> |
109 | 98 | <artifactId>workflow-multibranch</artifactId> |
110 | | - <version>${workflow-multibranch.version}</version> |
111 | 99 | </dependency> |
112 | 100 | <dependency> |
113 | 101 | <groupId>org.jenkins-ci.plugins.workflow</groupId> |
|
177 | 165 | <dependency> |
178 | 166 | <groupId>junit</groupId> |
179 | 167 | <artifactId>junit</artifactId> |
180 | | - <version>${junit.version}</version> |
181 | 168 | <scope>test</scope> |
182 | 169 | </dependency> |
183 | 170 | <dependency> |
184 | 171 | <groupId>org.jenkins-ci.plugins.workflow</groupId> |
185 | 172 | <artifactId>workflow-multibranch</artifactId> |
186 | | - <version>${workflow-multibranch.version}</version> |
187 | 173 | <classifier>tests</classifier> |
188 | 174 | <scope>test</scope> |
189 | 175 | </dependency> |
|
197 | 183 | <dependency> |
198 | 184 | <groupId>org.junit.jupiter</groupId> |
199 | 185 | <artifactId>junit-jupiter</artifactId> |
200 | | - <version>${junit-jupiter.version}</version> |
201 | 186 | <scope>test</scope> |
202 | 187 | </dependency> |
203 | 188 | <dependency> |
204 | 189 | <groupId>org.junit.jupiter</groupId> |
205 | 190 | <artifactId>junit-jupiter-api</artifactId> |
206 | | - <version>${junit-jupiter.version}</version> |
207 | 191 | <scope>test</scope> |
208 | 192 | </dependency> |
209 | 193 | </dependencies> |
|
223 | 207 | <plugins> |
224 | 208 | <plugin> |
225 | 209 | <artifactId>maven-compiler-plugin</artifactId> |
226 | | - <version>3.9.0</version> |
227 | 210 | <configuration> |
228 | 211 | <source>${java.version}</source> |
229 | 212 | <target>${java.version}</target> |
|
232 | 215 | <plugin> |
233 | 216 | <groupId>org.apache.maven.plugins</groupId> |
234 | 217 | <artifactId>maven-surefire-plugin</artifactId> |
235 | | - <version>${maven-surefire-plugin.version}</version> |
236 | 218 | <dependencies> |
237 | 219 | <dependency> |
238 | 220 | <groupId>org.junit.vintage</groupId> |
|
244 | 226 | <plugin> |
245 | 227 | <groupId>org.jacoco</groupId> |
246 | 228 | <artifactId>jacoco-maven-plugin</artifactId> |
247 | | - <version>${jacoco-maven-plugin.version}</version> |
248 | 229 | <executions> |
249 | 230 | <execution> |
250 | 231 | <id>pre-unit-test</id> |
|
275 | 256 | <dependencies> |
276 | 257 | <dependency> |
277 | 258 | <groupId>io.jenkins.tools.bom</groupId> |
278 | | - <artifactId>bom-2.222.x</artifactId> |
279 | | - <version>887.vae9c8ac09ff7</version> |
| 259 | + <artifactId>bom-${jenkins.baseline}.x</artifactId> |
| 260 | + <version>1763.v092b_8980a_f5e</version> |
280 | 261 | <scope>import</scope> |
281 | 262 | <type>pom</type> |
282 | 263 | </dependency> |
|
0 commit comments