pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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.11</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. </dependencies>
  68. <build>
  69. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  70. <plugins>
  71. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  72. <plugin>
  73. <artifactId>maven-clean-plugin</artifactId>
  74. <version>3.1.0</version>
  75. </plugin>
  76. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  77. <plugin>
  78. <artifactId>maven-resources-plugin</artifactId>
  79. <version>3.0.2</version>
  80. </plugin>
  81. <plugin>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>3.8.0</version>
  84. </plugin>
  85. <plugin>
  86. <artifactId>maven-surefire-plugin</artifactId>
  87. <version>2.22.1</version>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-jar-plugin</artifactId>
  91. <version>3.0.2</version>
  92. </plugin>
  93. <plugin>
  94. <artifactId>maven-install-plugin</artifactId>
  95. <version>2.5.2</version>
  96. </plugin>
  97. <plugin>
  98. <artifactId>maven-deploy-plugin</artifactId>
  99. <version>2.8.2</version>
  100. </plugin>
  101. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  102. <plugin>
  103. <artifactId>maven-site-plugin</artifactId>
  104. <version>3.7.1</version>
  105. </plugin>
  106. <plugin>
  107. <artifactId>maven-project-info-reports-plugin</artifactId>
  108. <version>3.0.0</version>
  109. </plugin>
  110. </plugins>
  111. </pluginManagement>
  112. </build>
  113. </project>