pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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.2.9.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.abcsz</groupId>
  12. <artifactId>LitigationCase</artifactId>
  13. <version>0.0.1</version>
  14. <name>LitigationCase</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <!-- <dependency>-->
  34. <!-- <groupId>com.abcsz.vhost</groupId>-->
  35. <!-- <artifactId>VHostClient</artifactId>-->
  36. <!-- <version>1.0.0</version>-->
  37. <!-- </dependency>-->
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.microsoft.sqlserver</groupId>
  44. <artifactId>sqljdbc4</artifactId>
  45. <version>4.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.1.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-generator</artifactId>
  55. <version>3.3.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.velocity</groupId>
  59. <artifactId>velocity</artifactId>
  60. <version>1.7</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-lang</groupId>
  64. <artifactId>commons-lang</artifactId>
  65. <version>2.6</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-swagger2</artifactId>
  70. <version>2.9.2</version>
  71. <!-- <scope>compile</scope>-->
  72. <!-- <exclusions>-->
  73. <!-- <exclusion>-->
  74. <!-- <groupId>org.mapstruct</groupId>-->
  75. <!-- <artifactId>mapstruct</artifactId>-->
  76. <!-- </exclusion>-->
  77. <!-- </exclusions>-->
  78. </dependency>
  79. <dependency>
  80. <groupId>io.springfox</groupId>
  81. <artifactId>springfox-swagger-ui</artifactId>
  82. <version>2.9.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. <version>1.18.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. <version>1.2.75</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.junit.platform</groupId>
  96. <artifactId>junit-platform-launcher</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.bouncycastle</groupId>
  101. <artifactId>bcpkix-jdk15on</artifactId>
  102. <version>1.64</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.abc.pay</groupId>
  106. <artifactId>TrustPayClient</artifactId>
  107. <version>3.1.8</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-codec</groupId>
  111. <artifactId>commons-codec</artifactId>
  112. <version>1.13</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <configuration>
  121. <mainClass>com.abcsz.litigationcase.LitigationCaseApplication</mainClass>
  122. </configuration>
  123. <executions>
  124. <execution>
  125. <goals>
  126. <goal>build-info</goal>
  127. <goal>repackage</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-compiler-plugin</artifactId>
  135. <configuration>
  136. <annotationProcessorPaths>
  137. <path>
  138. <groupId>org.mapstruct</groupId>
  139. <artifactId>mapstruct-processor</artifactId>
  140. <version>1.3.1.Final</version>
  141. </path>
  142. <path>
  143. <groupId>org.projectlombok</groupId>
  144. <artifactId>lombok</artifactId>
  145. <version>1.18.2</version>
  146. </path>
  147. </annotationProcessorPaths>
  148. </configuration>
  149. </plugin>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-surefire-plugin</artifactId>
  153. <configuration>
  154. <testFailureIgnore>true</testFailureIgnore>
  155. </configuration>
  156. </plugin>
  157. </plugins>
  158. </build>
  159. </project>