You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.5 KiB

6 years ago
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.panda</groupId>
<artifactId>panda</artifactId>
<packaging>pom</packaging>
5 years ago
<version>2.0.0</version>
6 years ago
<modules>
<module>panda-code</module>
<module>panda-jdbc</module>
<module>panda-web</module>
<module>panda-all</module>
6 years ago
<module>panda-beans</module>
<module>panda-aop</module>
6 years ago
</modules>
<properties>
<!-- log4j日志文件管理包版本 -->
<slf4j.version>1.7.12</slf4j.version>
<log4j.version>1.2.17</log4j.version>
6 years ago
<!-- 项目版本号 -->
<project.version>1.0.1</project.version>
6 years ago
</properties>
<dependencies>
<!-- log start -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- log end -->
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.30</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
6 years ago
<!-- 自动产生测试数据框架-->
<dependency>
<groupId>com.github.jsonzou</groupId>
<artifactId>jmockdata</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
6 years ago
</dependencies>
<build>
4 years ago
</build>
<distributionManagement>
<repository>
<id>nexus-3rd</id>
<url>http://106.12.122.216:8011/nexus/content/repositories/thirdparty/</url>
</repository>
</distributionManagement>
6 years ago
</project>