123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>SQL_ORM</groupId>
  7. <artifactId>ormsql</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>7</source>
  16. <target>7</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>5.1</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>5.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <version>8.0.13</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>RELEASE</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <version>RELEASE</version>
  49. <scope>test</scope>
  50. </dependency>
  51. </dependencies>
  52. </project>