pom.xml 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.zipcode.io</groupId>
  6. <artifactId>ormsimpleaccount</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>ormsimpleaccount</name>
  9. <!-- FIXME change it to the project's website -->
  10. <url>http://www.example.com</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-core -->
  24. <dependency>
  25. <groupId>com.j256.ormlite</groupId>
  26. <artifactId>ormlite-core</artifactId>
  27. <version>4.48</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/com.j256.ormlite/ormlite-jdbc -->
  30. <dependency>
  31. <groupId>com.j256.ormlite</groupId>
  32. <artifactId>ormlite-jdbc</artifactId>
  33. <version>4.48</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>5.1.6</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  43. <plugins>
  44. <plugin>
  45. <artifactId>maven-clean-plugin</artifactId>
  46. <version>3.0.0</version>
  47. </plugin>
  48. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  49. <plugin>
  50. <artifactId>maven-resources-plugin</artifactId>
  51. <version>3.0.2</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>3.7.0</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <version>2.20.1</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-jar-plugin</artifactId>
  63. <version>3.0.2</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-install-plugin</artifactId>
  67. <version>2.5.2</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-deploy-plugin</artifactId>
  71. <version>2.8.2</version>
  72. </plugin>
  73. </plugins>
  74. </pluginManagement>
  75. </build>
  76. </project>