Skip to content

Commit

Permalink
Update test dependencies
Browse files Browse the repository at this point in the history
Plugin-pom 3.44 ->  (mockito 2.28.2)
Hamcrest 2.1
WireMock 2.24.1
  • Loading branch information
bitwiseman committed Aug 23, 2019
1 parent 0d66dc1 commit ab57a73
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.43</version>
<version>3.44</version>
<relativePath />
</parent>
<artifactId>github-branch-source</artifactId>
Expand All @@ -26,6 +26,7 @@
<java.level>8</java.level>
<jenkins.version>2.138.4</jenkins.version>
<scm-api.version>2.6.3</scm-api.version>
<hamcrest-version>2.1</hamcrest-version>
<useBeta>true</useBeta>
</properties>

Expand Down Expand Up @@ -154,26 +155,32 @@
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-standalone</artifactId>
<version>2.4.1</version>
<version>2.24.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<artifactId>hamcrest</artifactId>
<version>${hamcrest-version}</version>
<scope>test</scope>
</dependency>
<!-- This is needed in order to force junit4 tests to use newer hamcrest version -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
Expand Down

0 comments on commit ab57a73

Please sign in to comment.