pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.0.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>2.0.2</version>
  12. <artifactId>module-job-kuaishou</artifactId>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  16. </properties>
  17. <repositories>
  18. <repository>
  19. <id>aliyun</id>
  20. <name>aliyun Repository</name>
  21. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  22. <snapshots>
  23. <enabled>false</enabled>
  24. </snapshots>
  25. </repository>
  26. <repository>
  27. <id>jeecg</id>
  28. <name>jeecg Repository</name>
  29. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  30. <snapshots>
  31. <enabled>false</enabled>
  32. </snapshots>
  33. </repository>
  34. <repository>
  35. <id>com.e-iceblue</id>
  36. <name>e-iceblue</name>
  37. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  38. </repository>
  39. </repositories>
  40. <dependencies>
  41. <!-- rabbitmq 依赖jar包-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-amqp</artifactId>
  45. <version>1.5.2.RELEASE</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jeecgframework.boot</groupId>
  49. <artifactId>jeecg-boot-base-common</artifactId>
  50. <version>2.0.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>jcl-over-slf4j</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.com.ctop</groupId>
  58. <artifactId>module-alarm</artifactId>
  59. <version>2.0.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.com.ctop</groupId>
  63. <artifactId>module-common</artifactId>
  64. <version>2.0.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.com.ctop</groupId>
  68. <artifactId>module-kuaishou</artifactId>
  69. <version>2.0.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.com.ctop</groupId>
  73. <artifactId>module-toutiao</artifactId>
  74. <version>2.0.2</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.aliyun.oss</groupId>
  79. <artifactId>aliyun-sdk-oss</artifactId>
  80. <version>3.5.0</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-csv</artifactId>
  86. <version>1.5</version>
  87. </dependency>
  88. <!--签章-->
  89. <dependency>
  90. <groupId>org.bouncycastle</groupId>
  91. <artifactId>bcprov-jdk15on</artifactId>
  92. <version>1.49</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.bouncycastle</groupId>
  96. <artifactId>bcpkix-jdk15on</artifactId>
  97. <version>1.49</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.jeecgframework.boot</groupId>
  101. <artifactId>module-ctop</artifactId>
  102. <version>2.0.2</version>
  103. <scope>compile</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>3.17</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml</artifactId>
  113. <version>3.17</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml-schemas</artifactId>
  118. <version>3.17</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>easyexcel</artifactId>
  123. <version>1.1.2-beat1</version>
  124. </dependency>
  125. </dependencies>
  126. <dependencyManagement>
  127. <dependencies>
  128. <dependency>
  129. <groupId>org.springframework.cloud</groupId>
  130. <artifactId>spring-cloud-dependencies</artifactId>
  131. <version>${spring-cloud.version}</version>
  132. <type>pom</type>
  133. <scope>import</scope>
  134. </dependency>
  135. </dependencies>
  136. </dependencyManagement>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.mybatis.generator</groupId>
  141. <artifactId>mybatis-generator-maven-plugin</artifactId>
  142. <version>1.3.6</version>
  143. <configuration>
  144. <!-- 是否覆盖,true表示会替换生成的JAVA文件,false则不覆盖 -->
  145. <overwrite>true</overwrite>
  146. </configuration>
  147. <dependencies>
  148. <!--mysql驱动包-->
  149. <dependency>
  150. <groupId>mysql</groupId>
  151. <artifactId>mysql-connector-java</artifactId>
  152. <version>5.1.45</version>
  153. </dependency>
  154. </dependencies>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. </plugin>
  160. </plugins>
  161. <resources>
  162. <!-- 解决MyBatis配置文件引入问题 -->
  163. <resource>
  164. <directory>src/main/java</directory>
  165. <includes>
  166. <include>**/*.properties</include>
  167. <include>**/*.xml</include>
  168. </includes>
  169. <!-- 是否替换资源中的属性-->
  170. <filtering>true</filtering>
  171. </resource>
  172. <resource>
  173. <directory>src/main/resources</directory>
  174. <filtering>true</filtering>
  175. </resource>
  176. </resources>
  177. </build>
  178. <profiles>
  179. <profile>
  180. <id>dev</id>
  181. <properties>
  182. <!-- 环境标识,需要与配置文件的名称相对应 -->
  183. <activatedProperties>dev</activatedProperties>
  184. </properties>
  185. <activation>
  186. <!-- 默认环境 -->
  187. <activeByDefault>true</activeByDefault>
  188. </activation>
  189. </profile>
  190. <profile>
  191. <id>test</id>
  192. <properties>
  193. <activatedProperties>test</activatedProperties>
  194. </properties>
  195. </profile>
  196. <profile>
  197. <id>prod</id>
  198. <properties>
  199. <activatedProperties>prod</activatedProperties>
  200. </properties>
  201. </profile>
  202. <profile>
  203. <id>preprod</id>
  204. <properties>
  205. <activatedProperties>preprod</activatedProperties>
  206. </properties>
  207. </profile>
  208. <profile>
  209. <id>jiaoyang</id>
  210. <properties>
  211. <activatedProperties>jiaoyang</activatedProperties>
  212. </properties>
  213. </profile>
  214. </profiles>
  215. </project>