pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <artifactId>jeecg-boot-module-system</artifactId>
  6. <version>2.0.2</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>jeecg-boot-parent</artifactId>
  10. <version>2.0.2</version>
  11. </parent>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. <repository>
  30. <id>com.e-iceblue</id>
  31. <name>e-iceblue</name>
  32. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  33. </repository>
  34. </repositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.jeecgframework.boot</groupId>
  38. <artifactId>jeecg-boot-base-common</artifactId>
  39. <version>2.0.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.slf4j</groupId>
  43. <artifactId>jcl-over-slf4j</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.com.ctop</groupId>
  47. <artifactId>module-media</artifactId>
  48. <version>2.0.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.com.ctop</groupId>
  52. <artifactId>module-kuaishou</artifactId>
  53. <version>2.0.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.com.ctop</groupId>
  57. <artifactId>module-toutiao</artifactId>
  58. <version>2.0.2</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.aliyun.oss</groupId>
  63. <artifactId>aliyun-sdk-oss</artifactId>
  64. <version>3.5.0</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-csv</artifactId>
  70. <version>1.5</version>
  71. </dependency>
  72. <!--签章-->
  73. <dependency>
  74. <groupId>org.bouncycastle</groupId>
  75. <artifactId>bcprov-jdk15on</artifactId>
  76. <version>1.49</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.bouncycastle</groupId>
  80. <artifactId>bcpkix-jdk15on</artifactId>
  81. <version>1.49</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.itextpdf</groupId>
  85. <artifactId>itextpdf</artifactId>
  86. <version>5.5.13</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.jeecgframework.boot</groupId>
  90. <artifactId>module-ctop</artifactId>
  91. <version>2.0.2</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.jeecgframework.boot</groupId>
  96. <artifactId>module-ctop</artifactId>
  97. <version>2.0.2</version>
  98. <scope>compile</scope>
  99. </dependency>
  100. <!--<dependency>
  101. <groupId>e-iceblue</groupId>
  102. <artifactId>spire.pdf</artifactId>
  103. <version>2.7.8</version>
  104. </dependency>-->
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. </plugin>
  112. </plugins>
  113. <resources>
  114. <!-- 解决MyBatis配置文件引入问题 -->
  115. <resource>
  116. <directory>src/main/java</directory>
  117. <includes>
  118. <include>**/*.properties</include>
  119. <include>**/*.xml</include>
  120. </includes>
  121. <!-- 是否替换资源中的属性-->
  122. <filtering>true</filtering>
  123. </resource>
  124. <resource>
  125. <directory>src/main/resources</directory>
  126. <filtering>true</filtering>
  127. </resource>
  128. </resources>
  129. </build>
  130. <profiles>
  131. <profile>
  132. <id>dev</id>
  133. <properties>
  134. <!-- 环境标识,需要与配置文件的名称相对应 -->
  135. <activatedProperties>dev</activatedProperties>
  136. </properties>
  137. <activation>
  138. <!-- 默认环境 -->
  139. <activeByDefault>true</activeByDefault>
  140. </activation>
  141. </profile>
  142. <profile>
  143. <id>test</id>
  144. <properties>
  145. <activatedProperties>test</activatedProperties>
  146. </properties>
  147. </profile>
  148. <profile>
  149. <id>prod</id>
  150. <properties>
  151. <activatedProperties>prod</activatedProperties>
  152. </properties>
  153. </profile>
  154. </profiles>
  155. </project>