香颂蔚澜社区后台代码

pom.xml 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.community</groupId>
  6. <artifactId>mq-message</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>jar</packaging>
  9. <name>mq-message</name>
  10. <description>mq-message</description>
  11. <parent>
  12. <groupId>com.community</groupId>
  13. <artifactId>smart-community</artifactId>
  14. <version>0.0.1</version>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <spring-cloud.version>Finchley.SR1</spring-cloud.version>
  21. <spring-session-jdbc.version>2.0.5.RELEASE</spring-session-jdbc.version>
  22. <logback.version>1.1.6</logback.version>
  23. <logback.access.version>1.1.2</logback.access.version>
  24. <commons.logging.version>1.2</commons.logging.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-openfeign</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.springfox</groupId>
  41. <artifactId>springfox-swagger2</artifactId>
  42. <version>2.7.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.springfox</groupId>
  46. <artifactId>springfox-swagger-ui</artifactId>
  47. <version>2.7.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-config</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.mybatis.spring.boot</groupId>
  59. <artifactId>mybatis-spring-boot-starter</artifactId>
  60. <version>1.3.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.github.pagehelper</groupId>
  64. <artifactId>pagehelper-spring-boot-starter</artifactId>
  65. <version>1.2.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <scope>runtime</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.community</groupId>
  74. <artifactId>community-common</artifactId>
  75. <version>0.0.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-jdbc</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.session</groupId>
  88. <artifactId>spring-session-jdbc</artifactId>
  89. <version>${spring-session-jdbc.version}</version>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  92. <dependency>
  93. <groupId>org.projectlombok</groupId>
  94. <artifactId>lombok</artifactId>
  95. <version>1.18.2</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. <!-- log4j -->
  99. <dependency>
  100. <groupId>org.apache.activemq</groupId>
  101. <artifactId>activemq-core</artifactId>
  102. <version>5.7.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.google.protobuf</groupId>
  106. <artifactId>protobuf-java</artifactId>
  107. <version>2.3.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>net.sf.json-lib</groupId>
  111. <artifactId>json-lib</artifactId>
  112. <version>2.4</version>
  113. <classifier>jdk15</classifier>
  114. <scope>compile</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-beanutils</groupId>
  118. <artifactId>commons-beanutils</artifactId>
  119. <version>1.8.1</version>
  120. <scope>compile</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-collections</groupId>
  124. <artifactId>commons-collections</artifactId>
  125. <version>3.2.1</version>
  126. <scope>compile</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-lang</groupId>
  130. <artifactId>commons-lang</artifactId>
  131. <version>2.6</version>
  132. <scope>${jar.scope}</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-logging</groupId>
  136. <artifactId>commons-logging</artifactId>
  137. <version>1.1.1</version>
  138. <scope>${jar.scope}</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>net.sf.ezmorph</groupId>
  142. <artifactId>ezmorph</artifactId>
  143. <version>1.0.6</version>
  144. <scope>${jar.scope}</scope>
  145. </dependency>
  146. <!--<dependency>-->
  147. <!--<groupId>org.springframework.boot</groupId>-->
  148. <!--<artifactId>spring-boot-starter-log4j</artifactId>-->
  149. <!--</dependency>-->
  150. <dependency>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-starter</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>commons-logging</groupId>
  156. <artifactId>commons-logging</artifactId>
  157. <version>${commons.logging.version}</version>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  160. <dependency>
  161. <groupId>com.google.guava</groupId>
  162. <artifactId>guava</artifactId>
  163. <version>26.0-jre</version>
  164. </dependency>
  165. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  166. <dependency>
  167. <groupId>org.apache.commons</groupId>
  168. <artifactId>commons-lang3</artifactId>
  169. <version>3.8.1</version>
  170. </dependency>
  171. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  172. <dependency>
  173. <groupId>commons-lang</groupId>
  174. <artifactId>commons-lang</artifactId>
  175. <version>2.6</version>
  176. </dependency>
  177. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  178. <dependency>
  179. <groupId>com.squareup.okhttp3</groupId>
  180. <artifactId>okhttp</artifactId>
  181. <version>3.11.0</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>commons-httpclient</groupId>
  185. <artifactId>commons-httpclient</artifactId>
  186. <version>3.1</version>
  187. </dependency>
  188. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  189. <dependency>
  190. <groupId>commons-io</groupId>
  191. <artifactId>commons-io</artifactId>
  192. <version>1.4</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>net.coobird</groupId>
  196. <artifactId>thumbnailator</artifactId>
  197. <version>0.4.2</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>mysql</groupId>
  201. <artifactId>mysql-connector-java</artifactId>
  202. </dependency>
  203. </dependencies>
  204. <dependencyManagement>
  205. <dependencies>
  206. <dependency>
  207. <groupId>org.springframework.cloud</groupId>
  208. <artifactId>spring-cloud-dependencies</artifactId>
  209. <version>${spring-cloud.version}</version>
  210. <type>pom</type>
  211. <scope>import</scope>
  212. </dependency>
  213. </dependencies>
  214. </dependencyManagement>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.springframework.boot</groupId>
  219. <artifactId>spring-boot-maven-plugin</artifactId>
  220. </plugin>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-compiler-plugin</artifactId>
  224. <version>3.7.0</version>
  225. <configuration>
  226. <source>1.8</source>
  227. <target>1.8</target>
  228. <encoding>UTF-8</encoding>
  229. <compilerArguments>
  230. <extdirs>${project.basedir}/lib</extdirs>
  231. </compilerArguments>
  232. </configuration>
  233. </plugin>
  234. <!--服务化打包工具-->
  235. <plugin>
  236. <groupId>org.apache.maven.plugins</groupId>
  237. <artifactId>maven-assembly-plugin</artifactId>
  238. <configuration>
  239. <descriptors>
  240. <descriptor>src/main/assembly/assembly.xml</descriptor>
  241. </descriptors>
  242. </configuration>
  243. <executions>
  244. <execution>
  245. <id>make-assembly</id>
  246. <phase>package</phase>
  247. <goals>
  248. <goal>single</goal>
  249. </goals>
  250. </execution>
  251. </executions>
  252. </plugin>
  253. </plugins>
  254. </build>
  255. </project>