pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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>com.jpsoft.shinestar</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.jpsoft.shinestar</groupId>
  11. <artifactId>web</artifactId>
  12. <version>1.0.0</version>
  13. <name>web</name>
  14. <packaging>war</packaging>
  15. <description>智慧小区网站</description>
  16. <properties>
  17. <swagger2.version>2.7.0</swagger2.version>
  18. <jwts.version>0.10.5</jwts.version>
  19. <netty-all.version>4.1.6.Final</netty-all.version>
  20. <fastjson.version>1.2.29</fastjson.version>
  21. <alipay.version>4.8.10.ALL</alipay.version>
  22. <ijpay.version>2.3.2</ijpay.version>
  23. <poi.version>4.1.0</poi.version>
  24. <lombok.version>1.18.12</lombok.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-tomcat</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>net.sourceforge.nekohtml</groupId>
  43. <artifactId>nekohtml</artifactId>
  44. <version>1.9.22</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.jpsoft.shinestar</groupId>
  48. <artifactId>lapi</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-aop</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-swagger2</artifactId>
  58. <version>${swagger2.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-swagger-ui</artifactId>
  63. <version>${swagger2.version}</version>
  64. </dependency>
  65. <!--整合Knife4j-->
  66. <dependency>
  67. <groupId>com.github.xiaoymin</groupId>
  68. <artifactId>knife4j-spring-boot-starter</artifactId>
  69. <version>2.0.4</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpclient</artifactId>
  78. </dependency>
  79. <!--jwt start-->
  80. <dependency>
  81. <groupId>io.jsonwebtoken</groupId>
  82. <artifactId>jjwt-api</artifactId>
  83. <version>0.10.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.jsonwebtoken</groupId>
  87. <artifactId>jjwt-impl</artifactId>
  88. <version>${jwts.version}</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.jsonwebtoken</groupId>
  93. <artifactId>jjwt-jackson</artifactId>
  94. <version>${jwts.version}</version>
  95. <scope>runtime</scope>
  96. </dependency>
  97. <!--jwt end-->
  98. <!--支付相关 start-->
  99. <dependency>
  100. <groupId>com.github.javen205</groupId>
  101. <artifactId>IJPay-All</artifactId>
  102. <version>${ijpay.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.jfinal</groupId>
  106. <artifactId>jfinal</artifactId>
  107. <version>3.5</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.alipay.sdk</groupId>
  111. <artifactId>alipay-sdk-java</artifactId>
  112. <version>${alipay.version}</version>
  113. <exclusions>
  114. <exclusion>
  115. <artifactId>bcprov-jdk15on</artifactId>
  116. <groupId>org.bouncycastle</groupId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <!--支付相关 end-->
  121. <dependency>
  122. <groupId>joda-time</groupId>
  123. <artifactId>joda-time</artifactId>
  124. </dependency>
  125. <!--海康威视设备-->
  126. <dependency>
  127. <groupId>com.jpsoft.ehome</groupId>
  128. <artifactId>ehome</artifactId>
  129. <version>1.0.0</version>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <configuration>
  138. <fork>true</fork>
  139. <addResources>true</addResources>
  140. </configuration>
  141. </plugin>
  142. </plugins>
  143. </build>
  144. <profiles>
  145. <profile>
  146. <id>dev</id>
  147. <dependencies>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-tomcat</artifactId>
  151. </dependency>
  152. <dependency>
  153. <artifactId>ehome-win-sdk</artifactId>
  154. <groupId>com.jpsoft.ehome</groupId>
  155. <version>1.0.0</version>
  156. </dependency>
  157. </dependencies>
  158. <properties>
  159. <active.profile>dev</active.profile>
  160. </properties>
  161. <activation>
  162. <activeByDefault>true</activeByDefault>
  163. </activation>
  164. </profile>
  165. <profile>
  166. <id>test</id>
  167. <dependencies>
  168. <dependency>
  169. <groupId>javax.servlet</groupId>
  170. <artifactId>javax.servlet-api</artifactId>
  171. <version>3.1.0</version>
  172. <scope>provided</scope>
  173. </dependency>
  174. <dependency>
  175. <artifactId>ehome-linux-sdk</artifactId>
  176. <groupId>com.jpsoft.ehome</groupId>
  177. <version>1.0.0</version>
  178. </dependency>
  179. </dependencies>
  180. <properties>
  181. <active.profile>test</active.profile>
  182. </properties>
  183. </profile>
  184. <profile>
  185. <id>production</id>
  186. <properties>
  187. <active.profile>production</active.profile>
  188. </properties>
  189. <dependencies>
  190. <dependency>
  191. <groupId>javax.servlet</groupId>
  192. <artifactId>javax.servlet-api</artifactId>
  193. <version>3.1.0</version>
  194. <scope>provided</scope>
  195. </dependency>
  196. <dependency>
  197. <artifactId>ehome-win-sdk</artifactId>
  198. <groupId>com.jpsoft.ehome</groupId>
  199. <version>1.0.0</version>
  200. </dependency>
  201. </dependencies>
  202. </profile>
  203. </profiles>
  204. </project>