pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-boot-base-common</artifactId>
  34. <version>2.0.2</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>jcl-over-slf4j</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.com.ctop</groupId>
  42. <artifactId>module-media</artifactId>
  43. <version>2.0.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.com.ctop</groupId>
  47. <artifactId>module-kuaishou</artifactId>
  48. <version>2.0.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.com.ctop</groupId>
  52. <artifactId>module-toutiao</artifactId>
  53. <version>2.0.2</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.aliyun.oss</groupId>
  58. <artifactId>aliyun-sdk-oss</artifactId>
  59. <version>3.5.0</version>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
  62. <dependency>
  63. <groupId>org.apache.commons</groupId>
  64. <artifactId>commons-csv</artifactId>
  65. <version>1.5</version>
  66. </dependency>
  67. <!--签章-->
  68. <dependency>
  69. <groupId>org.bouncycastle</groupId>
  70. <artifactId>bcprov-jdk15on</artifactId>
  71. <version>1.49</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.bouncycastle</groupId>
  75. <artifactId>bcpkix-jdk15on</artifactId>
  76. <version>1.49</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.itextpdf</groupId>
  80. <artifactId>itextpdf</artifactId>
  81. <version>5.5.13</version>
  82. </dependency>
  83. <!--<dependency>
  84. <groupId>com.itextpdf</groupId>
  85. <artifactId>itext7-core</artifactId>
  86. <version>7.1.4</version>
  87. <type>pom</type>
  88. </dependency>-->
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. </plugin>
  96. </plugins>
  97. <resources>
  98. <!-- 解决MyBatis配置文件引入问题 -->
  99. <resource>
  100. <directory>src/main/java</directory>
  101. <includes>
  102. <include>**/*.properties</include>
  103. <include>**/*.xml</include>
  104. </includes>
  105. <!-- 是否替换资源中的属性-->
  106. <filtering>true</filtering>
  107. </resource>
  108. <resource>
  109. <directory>src/main/resources</directory>
  110. <filtering>true</filtering>
  111. </resource>
  112. </resources>
  113. </build>
  114. <profiles>
  115. <profile>
  116. <id>dev</id>
  117. <properties>
  118. <!-- 环境标识,需要与配置文件的名称相对应 -->
  119. <activatedProperties>dev</activatedProperties>
  120. </properties>
  121. <activation>
  122. <!-- 默认环境 -->
  123. <activeByDefault>true</activeByDefault>
  124. </activation>
  125. </profile>
  126. <profile>
  127. <id>test</id>
  128. <properties>
  129. <activatedProperties>test</activatedProperties>
  130. </properties>
  131. </profile>
  132. <profile>
  133. <id>prod</id>
  134. <properties>
  135. <activatedProperties>prod</activatedProperties>
  136. </properties>
  137. </profile>
  138. </profiles>
  139. </project>