pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <parent>
  5. <artifactId>game-gs-data</artifactId>
  6. <groupId>com.zanxiang.game</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>game-gs-data-base</artifactId>
  11. <name>game-gs-data-base</name>
  12. <url>http://www.example.com</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.7</maven.compiler.source>
  16. <maven.compiler.target>1.7</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>4.11</version>
  23. <scope>test</scope>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  28. <plugins>
  29. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  30. <plugin>
  31. <artifactId>maven-clean-plugin</artifactId>
  32. <version>3.1.0</version>
  33. </plugin>
  34. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  35. <plugin>
  36. <artifactId>maven-resources-plugin</artifactId>
  37. <version>3.0.2</version>
  38. </plugin>
  39. <plugin>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <version>3.8.0</version>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-surefire-plugin</artifactId>
  45. <version>2.22.1</version>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-jar-plugin</artifactId>
  49. <version>3.0.2</version>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-install-plugin</artifactId>
  53. <version>2.5.2</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-deploy-plugin</artifactId>
  57. <version>2.8.2</version>
  58. </plugin>
  59. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  60. <plugin>
  61. <artifactId>maven-site-plugin</artifactId>
  62. <version>3.7.1</version>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-project-info-reports-plugin</artifactId>
  66. <version>3.0.0</version>
  67. </plugin>
  68. </plugins>
  69. </pluginManagement>
  70. </build>
  71. </project>