Skip to content

Commit

Permalink
Merge pull request #42 from Xray-App/cleanup_deps
Browse files Browse the repository at this point in the history
fix junit 4 dep and cleaned up other deps
  • Loading branch information
bitcoder authored Feb 5, 2024
2 parents 84aaf86 + f8979f3 commit c77cc16
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 38 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add the following dependency to your pom.xml:
<dependency>
<groupId>app.getxray</groupId>
<artifactId>xray-junit-extensions</artifactId>
<version>0.7.0</version>
<version>0.7.1</version>
<scope>test</scope>
</dependency>
```
Expand Down
73 changes: 36 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>app.getxray</groupId>
<artifactId>xray-junit-extensions</artifactId>
<packaging>jar</packaging>
<version>0.7.0</version>
<version>0.7.1</version>
<name>xray-junit-extensions</name>
<description>Improvements for JUnit that allow you to take better advantage of JUnit 5 (jupiter engine) whenever using it together with Xray Test Management.</description>
<url>https://github.com/Xray-App/xray-junit-extensions</url>
Expand Down Expand Up @@ -44,10 +44,10 @@
</scm>

<properties>
<junit-jupiter.version>5.7.1</junit-jupiter.version>
<junit.version>4.13.2</junit.version>
<junit-platform.version>1.7.1</junit-platform.version>
<junit.version>5.10.2</junit.version>
<mockito.version>4.3.1</mockito.version>
<slf4j-log4j12.version>1.7.25</slf4j-log4j12.version>
<version.maven-plugin-plugin>3.6.0</version.maven-plugin-plugin>

<!--Xray Properties -->

Expand All @@ -64,47 +64,62 @@
-->

<!--End Xray Properties -->


<version.maven-plugin-plugin>3.6.0</version.maven-plugin-plugin>

</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-bom</artifactId>
<version>${mockito.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite-api</artifactId>
<version>${junit-platform.version}</version>
<artifactId>junit-platform-reporting</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-reporting</artifactId>
<version>${junit-platform.version}</version>
<artifactId>junit-platform-launcher</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit-platform.version}</version>
<artifactId>junit-platform-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>${junit-platform.version}</version>
<artifactId>junit-platform-testkit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand All @@ -118,27 +133,11 @@
<version>1.6.2</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.8.0</version>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-testkit</artifactId>
<version>1.7.1</version>
<scope>test</scope>
</dependency>

</dependency>
</dependencies>

<distributionManagement>
Expand Down

0 comments on commit c77cc16

Please sign in to comment.