pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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>common</artifactId>
  49. <version>1.0.0</version>
  50. <exclusions>
  51. <exclusion>
  52. <artifactId>ehome-win-sdk</artifactId>
  53. <groupId>com.jpsoft.ehome</groupId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.jpsoft.shinestar</groupId>
  59. <artifactId>lapi</artifactId>
  60. <version>1.0.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-aop</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.springfox</groupId>
  68. <artifactId>springfox-swagger2</artifactId>
  69. <version>${swagger2.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-swagger-ui</artifactId>
  74. <version>${swagger2.version}</version>
  75. </dependency>
  76. <!--整合Knife4j-->
  77. <dependency>
  78. <groupId>com.github.xiaoymin</groupId>
  79. <artifactId>knife4j-spring-boot-starter</artifactId>
  80. <version>2.0.4</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpclient</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.httpcomponents</groupId>
  88. <artifactId>httpclient</artifactId>
  89. </dependency>
  90. <!--jwt start-->
  91. <dependency>
  92. <groupId>io.jsonwebtoken</groupId>
  93. <artifactId>jjwt-api</artifactId>
  94. <version>0.10.5</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.jsonwebtoken</groupId>
  98. <artifactId>jjwt-impl</artifactId>
  99. <version>${jwts.version}</version>
  100. <scope>runtime</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.jsonwebtoken</groupId>
  104. <artifactId>jjwt-jackson</artifactId>
  105. <version>${jwts.version}</version>
  106. <scope>runtime</scope>
  107. </dependency>
  108. <!--jwt end-->
  109. <!--支付相关 start-->
  110. <dependency>
  111. <groupId>com.github.javen205</groupId>
  112. <artifactId>IJPay-All</artifactId>
  113. <version>${ijpay.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.jfinal</groupId>
  117. <artifactId>jfinal</artifactId>
  118. <version>3.5</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alipay.sdk</groupId>
  122. <artifactId>alipay-sdk-java</artifactId>
  123. <version>${alipay.version}</version>
  124. <exclusions>
  125. <exclusion>
  126. <artifactId>bcprov-jdk15on</artifactId>
  127. <groupId>org.bouncycastle</groupId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <!--支付相关 end-->
  132. <dependency>
  133. <groupId>joda-time</groupId>
  134. <artifactId>joda-time</artifactId>
  135. </dependency>
  136. <!--海康威视设备-->
  137. <dependency>
  138. <groupId>com.jpsoft.ehome</groupId>
  139. <artifactId>ehome</artifactId>
  140. <version>1.0.0</version>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-maven-plugin</artifactId>
  148. <configuration>
  149. <fork>true</fork>
  150. <addResources>true</addResources>
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <profiles>
  156. <profile>
  157. <id>dev</id>
  158. <dependencies>
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-tomcat</artifactId>
  162. </dependency>
  163. <dependency>
  164. <artifactId>ehome-win-sdk</artifactId>
  165. <groupId>com.jpsoft.ehome</groupId>
  166. <version>1.0.0</version>
  167. </dependency>
  168. </dependencies>
  169. <properties>
  170. <active.profile>dev</active.profile>
  171. </properties>
  172. <activation>
  173. <activeByDefault>true</activeByDefault>
  174. </activation>
  175. </profile>
  176. <profile>
  177. <id>test</id>
  178. <dependencies>
  179. <dependency>
  180. <groupId>javax.servlet</groupId>
  181. <artifactId>javax.servlet-api</artifactId>
  182. <version>3.1.0</version>
  183. <scope>provided</scope>
  184. </dependency>
  185. <dependency>
  186. <artifactId>ehome-linux-sdk</artifactId>
  187. <groupId>com.jpsoft.ehome</groupId>
  188. <version>1.0.0</version>
  189. </dependency>
  190. </dependencies>
  191. <properties>
  192. <active.profile>test</active.profile>
  193. </properties>
  194. </profile>
  195. <profile>
  196. <id>production</id>
  197. <properties>
  198. <active.profile>production</active.profile>
  199. </properties>
  200. <dependencies>
  201. <dependency>
  202. <groupId>javax.servlet</groupId>
  203. <artifactId>javax.servlet-api</artifactId>
  204. <version>3.1.0</version>
  205. <scope>provided</scope>
  206. </dependency>
  207. <dependency>
  208. <artifactId>ehome-win-sdk</artifactId>
  209. <groupId>com.jpsoft.ehome</groupId>
  210. <version>1.0.0</version>
  211. </dependency>
  212. </dependencies>
  213. </profile>
  214. </profiles>
  215. </project>