2.0重构版本
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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