pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. <groupId>com.yihu.wlyy</groupId>
  7. <artifactId>wlyy_sign</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.4.0.RELEASE</version>
  14. <relativePath>pom.xml</relativePath>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>log4j-over-slf4j</artifactId>
  27. <groupId>org.slf4j</groupId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-tomcat</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-tomcat</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. <version>3.4</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. <version>4.5.1</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>commons-logging</groupId>
  65. <artifactId>commons-logging</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.httpcomponents</groupId>
  71. <artifactId>httpmime</artifactId>
  72. <version>4.5.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>net.sf.json-lib</groupId>
  76. <artifactId>json-lib</artifactId>
  77. <version>2.4</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>junit</groupId>
  81. <artifactId>junit</artifactId>
  82. <version>4.12</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <version>4.12</version>
  88. </dependency>
  89. <!--Swagger-->
  90. <dependency>
  91. <groupId>io.springfox</groupId>
  92. <artifactId>springfox-swagger2</artifactId>
  93. <version>2.7.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>io.springfox</groupId>
  97. <artifactId>springfox-swagger-ui</artifactId>
  98. <version>2.7.0</version>
  99. </dependency>
  100. <!--Springboot tomcat -->
  101. <dependency>
  102. <groupId>org.apache.tomcat.embed</groupId>
  103. <artifactId>tomcat-embed-jasper</artifactId>
  104. </dependency>
  105. <!-- 智业接口引用 -->
  106. <dependency>
  107. <groupId>sehrCrypto</groupId>
  108. <artifactId>sehrCrypto</artifactId>
  109. <version>1.0.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>net.java.dev.jna</groupId>
  113. <artifactId>jna</artifactId>
  114. <version>4.2.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>fastjson</artifactId>
  119. <version>1.2.17</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.zoesoft</groupId>
  123. <artifactId>phip-ssp-sdk</artifactId>
  124. <version>1.4.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.zoesoft</groupId>
  128. <artifactId>zoe-crypto</artifactId>
  129. <version>1.4.0</version>
  130. </dependency>
  131. <!-- 智业接口引用 END -->
  132. </dependencies>
  133. <build>
  134. <plugins>
  135. <plugin>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-maven-plugin</artifactId>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-surefire-plugin</artifactId>
  142. <configuration>
  143. <useSystemClassLoader>false</useSystemClassLoader>
  144. </configuration>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. </project>