pom.xml 2.7 KB

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