2.0重构版本
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

191 satır
7.3 KiB

  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. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>sw-system-bpm</artifactId>
  7. <groupId>cc.smtweb</groupId>
  8. <version>2.2.2-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.5.6</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <properties>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.smtweb</groupId>
  26. <artifactId>sw-framework-core</artifactId>
  27. <version>2.2.0-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-freemarker</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>net.coobird</groupId>
  35. <artifactId>thumbnailator</artifactId>
  36. <version>[0.4, 0.5)</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.jclarion</groupId>
  40. <artifactId>image4j</artifactId>
  41. <version>0.7</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.dataformat</groupId>
  45. <artifactId>jackson-dataformat-yaml</artifactId>
  46. <version>2.11.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fasterxml.jackson.dataformat</groupId>
  50. <artifactId>jackson-dataformat-xml</artifactId>
  51. <version>2.11.0</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/net.jodah/typetools -->
  54. <!-- <dependency>-->
  55. <!-- <groupId>net.jodah</groupId>-->
  56. <!-- <artifactId>typetools</artifactId>-->
  57. <!-- <version>0.6.3</version>-->
  58. <!-- </dependency>-->
  59. <dependency>
  60. <groupId>org.apache.velocity</groupId>
  61. <artifactId>velocity-engine-core</artifactId>
  62. <version>2.3</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-launcher -->
  71. <dependency>
  72. <groupId>org.junit.platform</groupId>
  73. <artifactId>junit-platform-launcher</artifactId>
  74. <version>1.6.2</version>
  75. <scope>test</scope>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  78. <dependency>
  79. <groupId>org.junit.jupiter</groupId>
  80. <artifactId>junit-jupiter-api</artifactId>
  81. <version>5.6.2</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
  85. <dependency>
  86. <groupId>org.junit.jupiter</groupId>
  87. <artifactId>junit-jupiter-engine</artifactId>
  88. <version>5.6.2</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.junit.vintage</groupId>
  93. <artifactId>junit-vintage-engine</artifactId>
  94. <version>5.6.2</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.junit.jupiter</groupId>
  99. <artifactId>junit-jupiter-params</artifactId>
  100. <version>5.6.2</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.assertj</groupId>-->
  106. <!-- <artifactId>assertj-core</artifactId>-->
  107. <!-- <version>3.16.0</version>-->
  108. <!-- <scope>test</scope>-->
  109. <!-- </dependency>-->
  110. <!--<dependency>
  111. <groupId>org.springframework</groupId>
  112. <artifactId>spring-test</artifactId>
  113. <version>5.2.7.RELEASE</version>
  114. <scope>test</scope>
  115. </dependency>-->
  116. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
  117. <dependency>
  118. <groupId>org.mockito</groupId>
  119. <artifactId>mockito-all</artifactId>
  120. <version>1.10.19</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-test</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <plugins>
  131. <!-- 打 springboot 完整包 -->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.springframework.boot</groupId>-->
  134. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  135. <!-- <version>2.1.5.RELEASE</version>-->
  136. <!-- </plugin>-->
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-surefire-plugin</artifactId>
  140. <configuration>
  141. <skipTests>true</skipTests>
  142. </configuration>
  143. </plugin>
  144. <!-- 用于生成source.jar包的plugin -->
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-source-plugin</artifactId>
  148. <executions>
  149. <execution>
  150. <id>attach-sources</id>
  151. <phase>verify</phase>
  152. <goals>
  153. <goal>jar-no-fork</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. <!-- 用于生成jar包的plugin -->
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-jar-plugin</artifactId>
  162. <configuration>
  163. <excludes>
  164. <exclude>config/application.yaml</exclude>
  165. <exclude>config/application-dev.yaml</exclude>
  166. <exclude>config/application-prod.yaml</exclude>
  167. </excludes>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. <distributionManagement>
  173. <repository>
  174. <id>nexus-releases</id>
  175. <name>Nexus Release Repository</name>
  176. <url>http://47.92.149.153:7000/repository/maven-releases/</url>
  177. </repository>
  178. <snapshotRepository>
  179. <id>nexus-snapshots</id>
  180. <name>Nexus Snapshot Repository</name>
  181. <url>http://47.92.149.153:7000/repository/maven-snapshots/</url>
  182. </snapshotRepository>
  183. </distributionManagement>
  184. </project>