pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.platform</groupId>
  6. <artifactId>alldata</artifactId>
  7. <version>1.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>alldata</name>
  10. <url>https://github.com/authorwlh/alldata</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</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. </dependencies>
  24. <build>
  25. <finalName>alldata</finalName>
  26. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  27. <plugins>
  28. <plugin>
  29. <artifactId>maven-clean-plugin</artifactId>
  30. <version>3.1.0</version>
  31. </plugin>
  32. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  33. <plugin>
  34. <artifactId>maven-resources-plugin</artifactId>
  35. <version>3.0.2</version>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.8.0</version>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <version>2.22.1</version>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-war-plugin</artifactId>
  47. <version>3.2.2</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-install-plugin</artifactId>
  51. <version>2.5.2</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <version>2.8.2</version>
  56. </plugin>
  57. </plugins>
  58. </pluginManagement>
  59. </build>
  60. </project>