pom.xml 2.5 KB

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