Skip to content

Commit

Permalink
[fix] fix junit version
Browse files Browse the repository at this point in the history
  • Loading branch information
TimmyYu committed May 15, 2020
1 parent 23bd1a6 commit 5b14ff1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
14 changes: 7 additions & 7 deletions core/client.pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@
<artifactId>zipkin-sender-urlconnection</artifactId>
<version>${zipkin-reporter.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${maven_junit_version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<version>${maven_junit_version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 6 additions & 0 deletions core/server.pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${maven_junit_version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tencent.tars</groupId>
<artifactId>tars-client</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<module>tools</module>
<module>protobuf</module>
<module>spring</module>
<!-- <module>tars-plugins</module>-->
<!-- <module>tars-plugins</module>-->
</modules>

<properties>
Expand All @@ -62,6 +62,7 @@
<maven_install_plugin_version>2.5.2</maven_install_plugin_version>
<maven_deploy_plugin_version>2.8.2</maven_deploy_plugin_version>
<maven_release_plugin_version>2.5.3</maven_release_plugin_version>
<maven_junit_version>4.8.2</maven_junit_version>
</properties>

<build>
Expand Down

0 comments on commit 5b14ff1

Please sign in to comment.