|
4 | 4 | <parent> |
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId> |
6 | 6 | <artifactId>plugin</artifactId> |
7 | | - <version>4.18</version> |
| 7 | + <version>5.17</version> |
8 | 8 | <relativePath /> |
9 | 9 | </parent> |
10 | 10 |
|
|
25 | 25 |
|
26 | 26 | <properties> |
27 | 27 | <!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. --> |
28 | | - <jenkins.version>2.263.1</jenkins.version> |
29 | | - <java.level>8</java.level> |
| 28 | + <jenkins.version>2.492.3</jenkins.version> |
30 | 29 | <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
31 | | - <pipeline-model-definition.version>1.6.0</pipeline-model-definition.version> |
| 30 | + <pipeline-model-definition.version>2.2255.v56a_15e805f12</pipeline-model-definition.version> |
32 | 31 | <revision>1.0.0</revision> |
33 | 32 | <changelist>-SNAPSHOT</changelist> |
34 | | - <jenkins-test-harness.version>2.34</jenkins-test-harness.version> |
| 33 | + <jenkins-test-harness.version>2395.v8256a_2157798</jenkins-test-harness.version> |
35 | 34 | <kubernetes-server-mock.version>5.4.0</kubernetes-server-mock.version> |
36 | 35 | <tekton-client.version>5.4.0</tekton-client.version> |
37 | | - <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version> |
| 36 | + <maven-surefire-plugin.version> 3.2.5</maven-surefire-plugin.version> |
38 | 37 | <mockwebserver.version>0.1.8</mockwebserver.version> |
39 | 38 | <junit-jupiter-engine.version>5.6.2</junit-jupiter-engine.version> |
40 | 39 | <jx-pipeline.version>0.0.163</jx-pipeline.version> |
| 40 | + <skipTests>true</skipTests> |
41 | 41 | </properties> |
42 | 42 |
|
43 | 43 | <licenses> |
|
60 | 60 | <groupId>org.slf4j</groupId> |
61 | 61 | <artifactId>slf4j-api</artifactId> |
62 | 62 | </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.kohsuke.stapler</groupId> |
| 65 | + <artifactId>stapler</artifactId> |
| 66 | + <version>1928.v9115fe47607f</version> |
| 67 | + <scope>provided</scope> |
| 68 | + </dependency> |
63 | 69 | <dependency> |
64 | 70 | <groupId>org.jenkins-ci.plugins.workflow</groupId> |
65 | 71 | <artifactId>workflow-aggregator</artifactId> |
|
119 | 125 | <scope>test</scope> |
120 | 126 | </dependency> |
121 | 127 |
|
| 128 | + <!-- <dependency> |
| 129 | + <groupId>org.jenkins-ci.main</groupId> |
| 130 | + <artifactId>jenkins-test-harness</artifactId> |
| 131 | + <version>2.34</version> |
| 132 | + <exclusions> |
| 133 | + <exclusion> |
| 134 | + <groupId>javax.servlet</groupId> |
| 135 | + <artifactId>javax.servlet-api</artifactId> |
| 136 | + </exclusion> |
| 137 | + </exclusions> |
| 138 | + </dependency> --> |
| 139 | + |
122 | 140 | </dependencies> |
123 | 141 |
|
124 | 142 | <dependencyManagement> |
125 | 143 | <dependencies> |
126 | 144 | <dependency> |
127 | 145 | <groupId>io.jenkins.tools.bom</groupId> |
128 | | - <artifactId>bom-2.249.x</artifactId> |
129 | | - <version>29</version> |
| 146 | + <artifactId>bom-2.462.x</artifactId> |
| 147 | + <version>4228.v0a_71308d905b_</version> |
130 | 148 | <scope>import</scope> |
131 | 149 | <type>pom</type> |
132 | 150 | </dependency> |
| 151 | + |
| 152 | + <dependency> |
| 153 | + <groupId>org.apache.commons</groupId> |
| 154 | + <artifactId>commons-lang3</artifactId> |
| 155 | + <version>3.17.0</version> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>org.apache.ivy</groupId> |
| 159 | + <artifactId>ivy</artifactId> |
| 160 | + <version>2.5.3</version> |
| 161 | + </dependency> |
| 162 | + |
| 163 | +<!-- |
133 | 164 | <dependency> |
134 | 165 | <groupId>org.slf4j</groupId> |
135 | 166 | <artifactId>slf4j-api</artifactId> |
136 | 167 | <version>1.7.30</version> |
137 | 168 | </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.apache.commons</groupId> |
140 | | - <artifactId>commons-lang3</artifactId> |
141 | | - <version>3.12.0</version> |
142 | | - </dependency> |
143 | 169 | <dependency> |
144 | 170 | <groupId>org.jenkins-ci.plugins</groupId> |
145 | 171 | <artifactId>jackson2-api</artifactId> |
|
164 | 190 | <groupId>com.squareup.okhttp3</groupId> |
165 | 191 | <artifactId>logging-interceptor</artifactId> |
166 | 192 | <version>3.14.9</version> |
167 | | - </dependency> |
| 193 | + </dependency> --> |
168 | 194 | </dependencies> |
169 | 195 | </dependencyManagement> |
170 | 196 |
|
|
191 | 217 | <plugins> |
192 | 218 | <plugin> |
193 | 219 | <groupId>org.apache.maven.plugins</groupId> |
194 | | - <artifactId>maven-surefire-plugin</artifactId> |
195 | | - <version>3.0.0-M5</version> |
| 220 | + <artifactId>maven-compiler-plugin</artifactId> |
| 221 | + <version>3.14.0</version> |
| 222 | + <configuration> |
| 223 | + <source>17</source> |
| 224 | + <target>17</target> |
| 225 | + </configuration> |
196 | 226 | </plugin> |
| 227 | + |
| 228 | + <plugin> |
| 229 | + <groupId>org.jenkins-ci.tools</groupId> |
| 230 | + <artifactId>maven-hpi-plugin</artifactId> |
| 231 | + <version>3.65</version> |
| 232 | + <extensions>true</extensions> |
| 233 | + </plugin> |
| 234 | + |
197 | 235 | <plugin> |
198 | 236 | <groupId>org.codehaus.mojo</groupId> |
199 | 237 | <artifactId>cobertura-maven-plugin</artifactId> |
|
0 commit comments