123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>NickSatinover</groupId>
  7. <artifactId>ZCW-ORM-SimpleAccount</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <build>
  10. <plugins>
  11. <plugin>
  12. <groupId>org.apache.maven.plugins</groupId>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <configuration>
  15. <source>8</source>
  16. <target>8</target>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-core -->
  23. <dependency>
  24. <groupId>com.j256.ormlite</groupId>
  25. <artifactId>ormlite-core</artifactId>
  26. <version>4.48</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-jdbc -->
  29. <dependency>
  30. <groupId>com.j256.ormlite</groupId>
  31. <artifactId>ormlite-jdbc</artifactId>
  32. <version>4.48</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>8.0.13</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>RELEASE</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. </project>