1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>zcw</groupId>
  7. <artifactId>trtongorm_lab</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>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. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <version>8.0.12</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. <version>4.12</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
  46. <dependency>
  47. <groupId>org.mockito</groupId>
  48. <artifactId>mockito-all</artifactId>
  49. <version>1.9.5</version>
  50. <scope>test</scope>
  51. </dependency>
  52. </dependencies>
  53. </project>