Authored by qinchao

解决jar冲突

Showing 1 changed file with 19 additions and 0 deletions
... ... @@ -27,6 +27,25 @@
<dependencyManagement>
<dependencies>
<!-- 版本冲突的jar 在parent定义 -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.7</version>
</dependency>
<!-- 版本冲突的jar 在parent定义 end -->
<dependency>
<groupId>javax.servlet</groupId>
... ...