Geen omschrijving

pom.xml 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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>io.renren</groupId>
  6. <artifactId>renren-fast</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <description>renren-fast</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.5.4.RELEASE</version>
  14. </parent>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. <mybatis.spring.boot.version>1.3.0</mybatis.spring.boot.version>
  20. <mysql.version>5.1.38</mysql.version>
  21. <druid.version>1.0.28</druid.version>
  22. <quartz.version>2.3.0</quartz.version>
  23. <swagger.version>2.6.1</swagger.version>
  24. <commons.lang.version>2.6</commons.lang.version>
  25. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.codec.version>1.10</commons.codec.version>
  28. <commons.configuration.version>1.10</commons.configuration.version>
  29. <shiro.version>1.3.2</shiro.version>
  30. <kaptcha.version>0.0.9</kaptcha.version>
  31. <qiniu.version>[7.2.0, 7.2.99]</qiniu.version>
  32. <aliyun.oss.version>2.5.0</aliyun.oss.version>
  33. <qcloud.cos.version>4.4</qcloud.cos.version>
  34. <!--wagon plugin 配置-->
  35. <service-path>deploy_path</service-path>
  36. <pack-name>full_jar_name</pack-name>
  37. <remote-addr>remote_host_ip</remote-addr>
  38. <remote-username>remote_host_username</remote-username>
  39. <remote-passwd>remote_host_password</remote-passwd>
  40. </properties>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-aop</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-context-support</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-configuration-processor</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-devtools</artifactId>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mybatis.spring.boot</groupId>
  71. <artifactId>mybatis-spring-boot-starter</artifactId>
  72. <version>${mybatis.spring.boot.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. <version>${mysql.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>druid</artifactId>
  82. <version>${druid.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.quartz-scheduler</groupId>
  86. <artifactId>quartz</artifactId>
  87. <version>${quartz.version}</version>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>com.mchange</groupId>
  91. <artifactId>c3p0</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>io.springfox</groupId>
  97. <artifactId>springfox-swagger2</artifactId>
  98. <version>${swagger.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger-ui</artifactId>
  103. <version>${swagger.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-lang</groupId>
  107. <artifactId>commons-lang</artifactId>
  108. <version>${commons.lang.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>commons-fileupload</groupId>
  112. <artifactId>commons-fileupload</artifactId>
  113. <version>${commons.fileupload.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-io</groupId>
  117. <artifactId>commons-io</artifactId>
  118. <version>${commons.io.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-codec</groupId>
  122. <artifactId>commons-codec</artifactId>
  123. <version>${commons.codec.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-configuration</groupId>
  127. <artifactId>commons-configuration</artifactId>
  128. <version>${commons.configuration.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.shiro</groupId>
  132. <artifactId>shiro-core</artifactId>
  133. <version>${shiro.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.shiro</groupId>
  137. <artifactId>shiro-spring</artifactId>
  138. <version>${shiro.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.github.axet</groupId>
  142. <artifactId>kaptcha</artifactId>
  143. <version>${kaptcha.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.qiniu</groupId>
  147. <artifactId>qiniu-java-sdk</artifactId>
  148. <version>${qiniu.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.aliyun.oss</groupId>
  152. <artifactId>aliyun-sdk-oss</artifactId>
  153. <version>${aliyun.oss.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.qcloud</groupId>
  157. <artifactId>cos_api</artifactId>
  158. <version>${qcloud.cos.version}</version>
  159. <exclusions>
  160. <exclusion>
  161. <groupId>org.slf4j</groupId>
  162. <artifactId>slf4j-log4j12</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. </dependencies>
  167. <build>
  168. <extensions>
  169. <extension>
  170. <groupId>org.apache.maven.wagon</groupId>
  171. <artifactId>wagon-ssh</artifactId>
  172. <version>2.8</version>
  173. </extension>
  174. </extensions>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <fork>true</fork>
  181. </configuration>
  182. </plugin>
  183. <plugin>
  184. <groupId>org.codehaus.mojo</groupId>
  185. <artifactId>wagon-maven-plugin</artifactId>
  186. <version>1.0</version>
  187. <configuration>
  188. <fromFile>target/${pack-name}</fromFile>
  189. <url><![CDATA[scp://${remote-username}:${remote-passwd}@${remote-addr}${service-path}]]></url>
  190. <commands>
  191. <!-- Kill Old Process -->
  192. <command>pkill -f ${pack-name}</command>
  193. <command>rm -f ${service-path}/renren.log</command>
  194. <!-- Restart jar package,write result into renren.log -->
  195. <command><![CDATA[nohup java -jar ${service-path}/${pack-name} > ${service-path}/renren.log 2>&1 & ]]></command>
  196. <command><![CDATA[netstat -nptl]]></command>
  197. <command><![CDATA[ps -ef | grep java | grep -v grep]]></command>
  198. </commands>
  199. <!-- 运行命令 mvn clean package wagon:upload-single wagon:sshexec-->
  200. <displayCommandOutputs>true</displayCommandOutputs>
  201. </configuration>
  202. </plugin>
  203. </plugins>
  204. </build>
  205. <repositories>
  206. <repository>
  207. <id>public</id>
  208. <name>aliyun nexus</name>
  209. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  210. <releases>
  211. <enabled>true</enabled>
  212. </releases>
  213. </repository>
  214. </repositories>
  215. <pluginRepositories>
  216. <pluginRepository>
  217. <id>public</id>
  218. <name>aliyun nexus</name>
  219. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  220. <releases>
  221. <enabled>true</enabled>
  222. </releases>
  223. <snapshots>
  224. <enabled>false</enabled>
  225. </snapshots>
  226. </pluginRepository>
  227. </pluginRepositories>
  228. </project>