pom.xml 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.zipcodewilmington</groupId>
  7. <artifactId>ormSimpleAccount</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-core -->
  11. <dependency>
  12. <groupId>com.j256.ormlite</groupId>
  13. <artifactId>ormlite-core</artifactId>
  14. <version>4.48</version>
  15. </dependency>
  16. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-jdbc -->
  17. <dependency>
  18. <groupId>com.j256.ormlite</groupId>
  19. <artifactId>ormlite-jdbc</artifactId>
  20. <version>4.48</version>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. <version>5.1.6</version>
  27. </dependency>
  28. </dependencies>
  29. </project>