pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jzdsh</groupId>
  6. <artifactId>database</artifactId>
  7. <version>1.2</version>
  8. <name>database</name>
  9. <description>the general database class library of jzdsh</description>
  10. <url>http://www.jzdsh.com/</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.jfinal</groupId>
  19. <artifactId>jfinal</artifactId>
  20. <version>4.8</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jzdsh</groupId>
  24. <artifactId>utils</artifactId>
  25. <version>1.1</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. </build>
  30. <distributionManagement>
  31. <repository>
  32. <id>rdc-releases</id>
  33. <url>https://repo.rdc.aliyun.com/repository/124979-release-U0ysiy/</url>
  34. </repository>
  35. <snapshotRepository>
  36. <id>rdc-snapshots</id>
  37. <url>https://repo.rdc.aliyun.com/repository/124979-snapshot-42WeYF/</url>
  38. </snapshotRepository>
  39. </distributionManagement>
  40. </project>