Skip to content

Commit c68e6a3

Browse files
committed
Merge branch 'dev'
2 parents 85d4add + 9fbfd31 commit c68e6a3

20 files changed

Lines changed: 2203 additions & 43 deletions

pom.xml

Lines changed: 74 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</parent>
3434
<groupId>io.jenkins.plugins</groupId>
3535
<artifactId>servicenow-devops</artifactId>
36-
<version>6.0.1</version>
36+
<version>6.2.0</version>
3737
<packaging>hpi</packaging>
3838
<properties>
3939
<jenkins.version>2.289.1</jenkins.version>
@@ -88,7 +88,6 @@
8888
<dependency>
8989
<groupId>org.jenkins-ci.plugins</groupId>
9090
<artifactId>credentials</artifactId>
91-
<version>2.3.7.1</version>
9291
</dependency>
9392

9493
<dependency>
@@ -170,6 +169,79 @@
170169
</exclusions>
171170
</dependency>
172171

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+
173245
</dependencies>
174246

175247
<build>

0 commit comments

Comments
 (0)