|
33 | 33 | </parent> |
34 | 34 | <groupId>io.jenkins.plugins</groupId> |
35 | 35 | <artifactId>servicenow-devops</artifactId> |
36 | | - <version>6.0.1</version> |
| 36 | + <version>6.2.0</version> |
37 | 37 | <packaging>hpi</packaging> |
38 | 38 | <properties> |
39 | 39 | <jenkins.version>2.289.1</jenkins.version> |
|
88 | 88 | <dependency> |
89 | 89 | <groupId>org.jenkins-ci.plugins</groupId> |
90 | 90 | <artifactId>credentials</artifactId> |
91 | | - <version>2.3.7.1</version> |
92 | 91 | </dependency> |
93 | 92 |
|
94 | 93 | <dependency> |
|
170 | 169 | </exclusions> |
171 | 170 | </dependency> |
172 | 171 |
|
| 172 | + <!-- Mockito for mocking in tests --> |
| 173 | + <dependency> |
| 174 | + <groupId>org.mockito</groupId> |
| 175 | + <artifactId>mockito-core</artifactId> |
| 176 | + <version>3.12.4</version> |
| 177 | + <scope>test</scope> |
| 178 | + </dependency> |
| 179 | + |
| 180 | + <!-- PowerMockito for private method mocking --> |
| 181 | + <dependency> |
| 182 | + <groupId>org.powermock</groupId> |
| 183 | + <artifactId>powermock-module-junit4</artifactId> |
| 184 | + <version>2.0.9</version> |
| 185 | + <scope>test</scope> |
| 186 | + </dependency> |
| 187 | + <dependency> |
| 188 | + <groupId>org.powermock</groupId> |
| 189 | + <artifactId>powermock-api-mockito2</artifactId> |
| 190 | + <version>2.0.9</version> |
| 191 | + <scope>test</scope> |
| 192 | + </dependency> |
| 193 | + |
| 194 | + <dependency> |
| 195 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 196 | + <artifactId>workflow-durable-task-step</artifactId> |
| 197 | + <scope>test</scope> |
| 198 | + </dependency> |
| 199 | + <dependency> |
| 200 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 201 | + <artifactId>workflow-basic-steps</artifactId> |
| 202 | + <scope>test</scope> |
| 203 | + </dependency> |
| 204 | + |
| 205 | + <dependency> |
| 206 | + <groupId>org.jenkinsci.plugins</groupId> |
| 207 | + <artifactId>pipeline-model-api</artifactId> |
| 208 | + <scope>test</scope> |
| 209 | + </dependency> |
| 210 | + |
| 211 | + <dependency> |
| 212 | + <groupId>org.jenkinsci.plugins</groupId> |
| 213 | + <artifactId>pipeline-model-extensions</artifactId> |
| 214 | + <scope>test</scope> |
| 215 | + </dependency> |
| 216 | + |
| 217 | + <dependency> |
| 218 | + <groupId>org.jenkinsci.plugins</groupId> |
| 219 | + <artifactId>pipeline-model-definition</artifactId> |
| 220 | + <scope>test</scope> |
| 221 | + </dependency> |
| 222 | + <dependency> |
| 223 | + <groupId>com.squareup.okhttp3</groupId> |
| 224 | + <artifactId>mockwebserver</artifactId> |
| 225 | + <version>4.12.0</version> |
| 226 | + <scope>test</scope> |
| 227 | + <exclusions> |
| 228 | + <exclusion> |
| 229 | + <groupId>org.jetbrains.kotlin</groupId> |
| 230 | + <artifactId>*</artifactId> |
| 231 | + </exclusion> |
| 232 | + <exclusion> |
| 233 | + <groupId>com.squareup.okio</groupId> |
| 234 | + <artifactId>*</artifactId> |
| 235 | + </exclusion> |
| 236 | + </exclusions> |
| 237 | + </dependency> |
| 238 | + <dependency> |
| 239 | + <groupId>com.squareup.okio</groupId> |
| 240 | + <artifactId>okio-jvm</artifactId> |
| 241 | + <version>3.9.1</version> |
| 242 | + <scope>test</scope> |
| 243 | + </dependency> |
| 244 | + |
173 | 245 | </dependencies> |
174 | 246 |
|
175 | 247 | <build> |
|
0 commit comments