pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.galaxis</groupId>
  12. <artifactId>manatee</artifactId>
  13. <version>1.0</version>
  14. <name>manatee</name>
  15. <description>galaxis first step into cloud</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <spring-cloud.version>2021.0.1</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-openfeign</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mybatis.spring.boot</groupId>
  35. <artifactId>mybatis-spring-boot-starter</artifactId>
  36. <version>2.2.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.poi</groupId>
  40. <artifactId>poi</artifactId>
  41. <version>3.13</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.poi</groupId>
  45. <artifactId>poi-ooxml</artifactId>
  46. <version>3.13</version>
  47. </dependency>
  48. <!-- <dependency>-->
  49. <!-- <groupId>org.projectlombok</groupId>-->
  50. <!-- <artifactId>lombok</artifactId>-->
  51. <!-- <optional>true</optional>-->
  52. <!-- </dependency>-->
  53. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <version>1.18.24</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>8.0.18</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.vladmihalcea</groupId>
  67. <artifactId>hibernate-types-52</artifactId>
  68. <version>2.9.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>net.sf.json-lib</groupId>
  72. <artifactId>json-lib</artifactId>
  73. <version>2.4</version>
  74. <classifier>jdk15</classifier>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>fastjson</artifactId>
  79. <version>1.2.37</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-test</artifactId>
  84. <scope>test</scope>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>org.junit.vintage</groupId>
  88. <artifactId>junit-vintage-engine</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-security</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.auth0</groupId>
  98. <artifactId>java-jwt</artifactId>
  99. <version>3.10.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.aliyun</groupId>
  103. <artifactId>aliyun-java-sdk-core</artifactId>
  104. <version>4.1.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.aliyun</groupId>
  108. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  109. <version>2.0.0</version>
  110. <exclusions>
  111. <exclusion>
  112. <artifactId>activation</artifactId>
  113. <groupId>javax.activation</groupId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-web-services</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>wsdl4j</groupId>
  123. <artifactId>wsdl4j</artifactId>
  124. </dependency>
  125. </dependencies>
  126. <dependencyManagement>
  127. <dependencies>
  128. <dependency>
  129. <groupId>org.springframework.cloud</groupId>
  130. <artifactId>spring-cloud-dependencies</artifactId>
  131. <version>${spring-cloud.version}</version>
  132. <type>pom</type>
  133. <scope>import</scope>
  134. </dependency>
  135. </dependencies>
  136. </dependencyManagement>
  137. <build>
  138. <resources>
  139. <resource>
  140. <directory>src/main/java</directory>
  141. <includes>
  142. <include>**/*.xml</include>
  143. </includes>
  144. </resource>
  145. <resource>
  146. <directory>src/main/resources</directory>
  147. <includes>
  148. <include>**/*.*</include>
  149. </includes>
  150. </resource>
  151. </resources>
  152. <plugins>
  153. <plugin>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-maven-plugin</artifactId>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.codehaus.mojo</groupId>
  159. <artifactId>jaxb2-maven-plugin</artifactId>
  160. <version>2.5.0</version>
  161. <executions>
  162. <execution>
  163. <id>xjc</id>
  164. <goals>
  165. <goal>xjc</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. <configuration>
  170. <clearOutputDir>false</clearOutputDir>
  171. <sources>
  172. <source>${project.basedir}/src/main/resources/chuanyun.xsd</source>
  173. </sources>
  174. </configuration>
  175. </plugin>
  176. </plugins>
  177. </build>
  178. </project>