This is an automated email from the ASF dual-hosted git repository.
liubao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git
The following commit(s) were added to refs/heads/master by this push:
new 3ca0bb27a [SCB-2445] make junit only test dependency (#2777)
3ca0bb27a is described below
commit 3ca0bb27a3f2b03c815e24a0c3f1576950206135
Author: ZhangJian He <[email protected]>
AuthorDate: Wed Apr 13 08:56:52 2022 +0800
[SCB-2445] make junit only test dependency (#2777)
---
core/pom.xml | 26 ++++++--------------------
1 file changed, 6 insertions(+), 20 deletions(-)
diff --git a/core/pom.xml b/core/pom.xml
index 2b33b7445..c357408ee 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -56,21 +56,16 @@
<groupId>org.apache.servicecomb</groupId>
<artifactId>servicecomb-governance</artifactId>
</dependency>
-
<dependency>
- <groupId>org.jmockit</groupId>
- <artifactId>jmockit</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
+ <groupId>io.vertx</groupId>
+ <artifactId>vertx-codegen</artifactId>
<scope>provided</scope>
</dependency>
+ <!-- test -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>provided</scope>
+ <groupId>org.apache.servicecomb</groupId>
+ <artifactId>foundation-test-scaffolding</artifactId>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -82,14 +77,5 @@
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.apache.servicecomb</groupId>
- <artifactId>foundation-test-scaffolding</artifactId>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-codegen</artifactId>
- <scope>provided</scope>
- </dependency>
</dependencies>
</project>