pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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>domain</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.11</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.liangbaika</groupId>
  30. <artifactId>validate-spring-boot-starter</artifactId>
  31. <version>1.2.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.hibernate</groupId>
  39. <artifactId>hibernate-validator</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-annotations</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.fasterxml.jackson.datatype</groupId>
  51. <artifactId>jackson-datatype-jsr310</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.deepoove</groupId>
  59. <artifactId>poi-tl</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-web</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  68. <plugins>
  69. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  70. <plugin>
  71. <artifactId>maven-clean-plugin</artifactId>
  72. <version>3.1.0</version>
  73. </plugin>
  74. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  75. <plugin>
  76. <artifactId>maven-resources-plugin</artifactId>
  77. <version>3.0.2</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.8.0</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-surefire-plugin</artifactId>
  85. <version>2.22.1</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-jar-plugin</artifactId>
  89. <version>3.0.2</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-install-plugin</artifactId>
  93. <version>2.5.2</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-deploy-plugin</artifactId>
  97. <version>2.8.2</version>
  98. </plugin>
  99. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  100. <plugin>
  101. <artifactId>maven-site-plugin</artifactId>
  102. <version>3.7.1</version>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-project-info-reports-plugin</artifactId>
  106. <version>3.0.0</version>
  107. </plugin>
  108. </plugins>
  109. </pluginManagement>
  110. </build>
  111. </project>