pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.3.3.RELEASE</version>
  8. <relativePath/> <!-- lookup parent from repository -->
  9. </parent>
  10. <groupId>com.style24</groupId>
  11. <artifactId>root</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <name>com.style24.root</name>
  15. <description>STYLE24 ROOT</description>
  16. <modules>
  17. <module>style24.core</module>
  18. <module>style24.admin</module>
  19. <module>style24.scm</module>
  20. <module>style24.batch</module>
  21. <module>style24.front</module>
  22. </modules>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <skipTests>true</skipTests>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.style24.core</groupId>
  31. <artifactId>style24.core</artifactId>
  32. <version>1.0.0</version>
  33. <type>jar</type>
  34. <scope>compile</scope>
  35. </dependency>
  36. </dependencies>
  37. </dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-cache</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-jdbc</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-validation</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-tomcat</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web-services</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.data</groupId>
  67. <artifactId>spring-data-commons</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mybatis.spring.boot</groupId>
  71. <artifactId>mybatis-spring-boot-starter</artifactId>
  72. <version>2.1.3</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-tomcat</artifactId>
  82. <scope>provided</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.junit.vintage</groupId>
  91. <artifactId>junit-vintage-engine</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-lang3</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpclient</artifactId>
  102. </dependency>
  103. <!-- <dependency>
  104. <groupId>com.googlecode.json-simple</groupId>
  105. <artifactId>json-simple</artifactId>
  106. <version>1.1.1</version>
  107. </dependency> -->
  108. <dependency>
  109. <groupId>com.google.code.gson</groupId>
  110. <artifactId>gson</artifactId>
  111. </dependency>
  112. <!-- /// Redis -->
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-data-redis</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.session</groupId>
  119. <artifactId>spring-session-data-redis</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-pool2</artifactId>
  124. </dependency>
  125. <!-- \\\ Redis -->
  126. <!-- /// Excel POI -->
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi</artifactId>
  130. <version>3.17</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml</artifactId>
  135. <version>3.17</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.poi</groupId>
  139. <artifactId>poi-ooxml-schemas</artifactId>
  140. <version>3.17</version>
  141. </dependency>
  142. <!-- \\\ Excel POI -->
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-maven-plugin</artifactId>
  149. </plugin>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-surefire-plugin</artifactId>
  153. <configuration>
  154. <skipTests>${skipTests}</skipTests>
  155. </configuration>
  156. </plugin>
  157. </plugins>
  158. </build>
  159. </project>