pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>unionAiCloudCgi</artifactId>
  7. <groupId>com.union.ai</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>unionAiCloudCgiDao</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <dependencies>
  14. <!-- database -->
  15. <dependency>
  16. <groupId>mysql</groupId>
  17. <artifactId>mysql-connector-java</artifactId>
  18. <version>8.0.22</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.mchange</groupId>
  22. <artifactId>c3p0</artifactId>
  23. <version>0.9.2.1</version>
  24. </dependency>
  25. <!-- database -->
  26. <!--mybatis-->
  27. <dependency>
  28. <groupId>org.mybatis</groupId>
  29. <artifactId>mybatis</artifactId>
  30. <version>3.2.7</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis</groupId>
  34. <artifactId>mybatis-spring</artifactId>
  35. <version>1.2.2</version>
  36. </dependency>
  37. </dependencies>
  38. </project>