123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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>com.jzdsh</groupId>
- <artifactId>database</artifactId>
- <version>1.2</version>
- <name>database</name>
- <description>the general database class library of jzdsh</description>
- <url>http://www.jzdsh.com/</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.jfinal</groupId>
- <artifactId>jfinal</artifactId>
- <version>4.8</version>
- </dependency>
- <dependency>
- <groupId>com.jzdsh</groupId>
- <artifactId>utils</artifactId>
- <version>1.1</version>
- </dependency>
- </dependencies>
- <build>
- </build>
- <distributionManagement>
- <repository>
- <id>rdc-releases</id>
- <url>https://repo.rdc.aliyun.com/repository/124979-release-U0ysiy/</url>
- </repository>
- <snapshotRepository>
- <id>rdc-snapshots</id>
- <url>https://repo.rdc.aliyun.com/repository/124979-snapshot-42WeYF/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|