pom.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.assessment1</groupId>
  7. <artifactId>question1</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>1.8</maven.compiler.source>
  11. <maven.compiler.target>1.8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <version>4.12</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-core -->
  20. <dependency>
  21. <groupId>com.j256.ormlite</groupId>
  22. <artifactId>ormlite-core</artifactId>
  23. <version>4.48</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.h2database</groupId>
  27. <artifactId>h2</artifactId>
  28. <version>1.4.197</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-jdbc -->
  31. <dependency>
  32. <groupId>com.j256.ormlite</groupId>
  33. <artifactId>ormlite-jdbc</artifactId>
  34. <version>4.48</version>
  35. </dependency>
  36. </dependencies>
  37. </project>