pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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.smart</groupId>
  7. <artifactId>smart-community-server</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.jpsoft.smart</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. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-tomcat</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.jpsoft.smart</groupId>
  38. <artifactId>common</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.jpsoft.smart</groupId>
  43. <artifactId>electricity</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-aop</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.springfox</groupId>
  52. <artifactId>springfox-swagger2</artifactId>
  53. <version>${swagger2.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-swagger-ui</artifactId>
  58. <version>${swagger2.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.httpcomponents</groupId>
  62. <artifactId>httpclient</artifactId>
  63. </dependency>
  64. <!--jwt start-->
  65. <dependency>
  66. <groupId>io.jsonwebtoken</groupId>
  67. <artifactId>jjwt-api</artifactId>
  68. <version>0.10.5</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.jsonwebtoken</groupId>
  72. <artifactId>jjwt-impl</artifactId>
  73. <version>${jwts.version}</version>
  74. <scope>runtime</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.jsonwebtoken</groupId>
  78. <artifactId>jjwt-jackson</artifactId>
  79. <version>${jwts.version}</version>
  80. <scope>runtime</scope>
  81. </dependency>
  82. <!--jwt end-->
  83. <!--支付相关 start-->
  84. <dependency>
  85. <groupId>com.github.javen205</groupId>
  86. <artifactId>IJPay-All</artifactId>
  87. <version>${ijpay.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.jfinal</groupId>
  91. <artifactId>jfinal</artifactId>
  92. <version>3.5</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.alipay.sdk</groupId>
  96. <artifactId>alipay-sdk-java</artifactId>
  97. <version>${alipay.version}</version>
  98. </dependency>
  99. <!--支付相关 end-->
  100. <dependency>
  101. <groupId>joda-time</groupId>
  102. <artifactId>joda-time</artifactId>
  103. </dependency>
  104. <!--rabbmitmq-->
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-amqp</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <configuration>
  116. <fork>true</fork>
  117. <addResources>true</addResources>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <profiles>
  123. <profile>
  124. <id>dev</id>
  125. <dependencies>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-tomcat</artifactId>
  129. </dependency>
  130. </dependencies>
  131. <properties>
  132. <active.profile>dev</active.profile>
  133. </properties>
  134. <activation>
  135. <activeByDefault>true</activeByDefault>
  136. </activation>
  137. </profile>
  138. <profile>
  139. <id>test</id>
  140. <dependencies>
  141. <dependency>
  142. <groupId>javax.servlet</groupId>
  143. <artifactId>javax.servlet-api</artifactId>
  144. <version>3.1.0</version>
  145. <scope>provided</scope>
  146. </dependency>
  147. </dependencies>
  148. <properties>
  149. <active.profile>test</active.profile>
  150. </properties>
  151. </profile>
  152. <profile>
  153. <id>production</id>
  154. <properties>
  155. <active.profile>production</active.profile>
  156. </properties>
  157. <dependencies>
  158. <dependency>
  159. <groupId>javax.servlet</groupId>
  160. <artifactId>javax.servlet-api</artifactId>
  161. <version>3.1.0</version>
  162. <scope>provided</scope>
  163. </dependency>
  164. </dependencies>
  165. </profile>
  166. </profiles>
  167. </project>