pom.xml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.jzdsh</groupId>
  6. <artifactId>dome</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>dome</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. <dependency>
  24. <groupId>org.junit.jupiter</groupId>
  25. <artifactId>junit-jupiter-api</artifactId>
  26. <version>RELEASE</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.12</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <version>5.1.29</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  42. <plugins>
  43. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  44. <plugin>
  45. <artifactId>maven-clean-plugin</artifactId>
  46. <version>3.1.0</version>
  47. </plugin>
  48. <!-- default lifecycle, jar packaging: see https://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.8.0</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <version>2.22.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. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  74. <plugin>
  75. <artifactId>maven-site-plugin</artifactId>
  76. <version>3.7.1</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-project-info-reports-plugin</artifactId>
  80. <version>3.0.0</version>
  81. </plugin>
  82. </plugins>
  83. </pluginManagement>
  84. </build>
  85. </project>