pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. </modules>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <skipTests>true</skipTests>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.style24.core</groupId>
  30. <artifactId>style24.core</artifactId>
  31. <version>1.0.0</version>
  32. <type>jar</type>
  33. <scope>compile</scope>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-cache</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-jdbc</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-validation</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-tomcat</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web-services</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.data</groupId>
  66. <artifactId>spring-data-commons</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mybatis.spring.boot</groupId>
  70. <artifactId>mybatis-spring-boot-starter</artifactId>
  71. <version>2.1.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <optional>true</optional>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-tomcat</artifactId>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>test</scope>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>org.junit.vintage</groupId>
  90. <artifactId>junit-vintage-engine</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.commons</groupId>
  96. <artifactId>commons-lang3</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. <artifactId>httpclient</artifactId>
  101. </dependency>
  102. <!-- <dependency>
  103. <groupId>com.googlecode.json-simple</groupId>
  104. <artifactId>json-simple</artifactId>
  105. <version>1.1.1</version>
  106. </dependency> -->
  107. <dependency>
  108. <groupId>com.google.code.gson</groupId>
  109. <artifactId>gson</artifactId>
  110. </dependency>
  111. <!-- /// Redis -->
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-data-redis</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.session</groupId>
  118. <artifactId>spring-session-data-redis</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.commons</groupId>
  122. <artifactId>commons-pool2</artifactId>
  123. </dependency>
  124. <!-- \\\ Redis -->
  125. <!-- /// Excel POI -->
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi</artifactId>
  129. <version>3.17</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-ooxml</artifactId>
  134. <version>3.17</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.poi</groupId>
  138. <artifactId>poi-ooxml-schemas</artifactId>
  139. <version>3.17</version>
  140. </dependency>
  141. <!-- \\\ Excel POI -->
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-maven-plugin</artifactId>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-surefire-plugin</artifactId>
  152. <configuration>
  153. <skipTests>${skipTests}</skipTests>
  154. </configuration>
  155. </plugin>
  156. </plugins>
  157. </build>
  158. </project>