1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.iamberry</groupId>
- <artifactId>iamberry-parent</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>iamberry-app-international</artifactId>
- <packaging>war</packaging>
- <dependencies>
- <dependency>
- <groupId>com.iamberry</groupId>
- <artifactId>iamberry-app-international-service</artifactId>
- <version>1.0.0</version>
- <exclusions>
- <exclusion>
- <artifactId>spring</artifactId>
- <groupId>org.springframework</groupId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-jcl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 新的项目使用druid -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.0.20</version>
- </dependency>
- </dependencies>
- </project>
|