pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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>cn.com.ctop</groupId>
  38. <artifactId>module-media</artifactId>
  39. <version>2.0.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.com.ctop</groupId>
  43. <artifactId>module-kuaishou</artifactId>
  44. <version>2.0.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.com.ctop</groupId>
  48. <artifactId>module-toutiao</artifactId>
  49. <version>2.0.2</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. </plugins>
  60. <resources>
  61. <!-- 解决MyBatis配置文件引入问题 -->
  62. <resource>
  63. <directory>src/main/java</directory>
  64. <includes>
  65. <include>**/*.properties</include>
  66. <include>**/*.xml</include>
  67. </includes>
  68. <!-- 是否替换资源中的属性-->
  69. <filtering>false</filtering>
  70. </resource>
  71. <resource>
  72. <directory>src/main/resources</directory>
  73. </resource>
  74. </resources>
  75. </build>
  76. </project>