pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>biz-base</artifactId>
  12. <name>biz-base</name>
  13. <description>biz-base</description>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.dayou</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.dayou</groupId>
  35. <artifactId>common</artifactId>
  36. <version>1.0-SNAPSHOT</version>
  37. <exclusions>
  38. <exclusion>
  39. <artifactId>slf4j-log4j12</artifactId>
  40. <groupId>org.slf4j</groupId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>pagehelper-spring-boot-starter</artifactId>
  44. <groupId>com.github.pagehelper</groupId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.dayou</groupId>
  50. <artifactId>service</artifactId>
  51. <version>1.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.shalousun</groupId>
  55. <artifactId>smart-doc</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <!--测试-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-test</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <artifactId>log4j-to-slf4j</artifactId>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. </exclusion>
  67. <exclusion>
  68. <artifactId>jul-to-slf4j</artifactId>
  69. <groupId>org.slf4j</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>com.vaadin.external.google</groupId>
  73. <artifactId>android-json</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. <scope>test</scope>
  77. </dependency>
  78. <!-- excel工具 -->
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-test</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <version>4.12</version>
  92. <scope>test</scope>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <version>2.3.1.RELEASE</version>
  101. <configuration>
  102. <includeSystemScope>true</includeSystemScope>
  103. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  104. <!-- <skip>true</skip>-->
  105. </configuration>
  106. <executions>
  107. <execution>
  108. <goals>
  109. <goal>repackage</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>