pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>item-management-1phase</artifactId>
  7. <groupId>com.dayou</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.dayou</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.dayou</groupId>
  25. <artifactId>dao</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <!-- excel工具 -->
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.guava</groupId>
  41. <artifactId>guava</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-aop</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.datatype</groupId>
  49. <artifactId>jackson-datatype-jsr310</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-fileupload</groupId>
  53. <artifactId>commons-fileupload</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>es.moki.ratelimitj</groupId>
  57. <artifactId>ratelimitj-core</artifactId>
  58. <version>0.6.0</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>es.moki.ratelimitj</groupId>
  63. <artifactId>ratelimitj-inmemory</artifactId>
  64. <version>0.6.0</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.xdocreport.document -->
  68. <dependency>
  69. <groupId>fr.opensagres.xdocreport</groupId>
  70. <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>
  71. <version>2.0.3</version>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  76. <plugins>
  77. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  78. <plugin>
  79. <artifactId>maven-clean-plugin</artifactId>
  80. <version>3.1.0</version>
  81. </plugin>
  82. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  83. <plugin>
  84. <artifactId>maven-resources-plugin</artifactId>
  85. <version>3.0.2</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>3.8.0</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-surefire-plugin</artifactId>
  93. <version>2.22.1</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-jar-plugin</artifactId>
  97. <version>3.0.2</version>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-install-plugin</artifactId>
  101. <version>2.5.2</version>
  102. </plugin>
  103. <plugin>
  104. <artifactId>maven-deploy-plugin</artifactId>
  105. <version>2.8.2</version>
  106. </plugin>
  107. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  108. <plugin>
  109. <artifactId>maven-site-plugin</artifactId>
  110. <version>3.7.1</version>
  111. </plugin>
  112. <plugin>
  113. <artifactId>maven-project-info-reports-plugin</artifactId>
  114. <version>3.0.0</version>
  115. </plugin>
  116. </plugins>
  117. </pluginManagement>
  118. </build>
  119. </project>