pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <groupId>cn.com.ctop</groupId>
  12. <artifactId>module-crawler</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.ctop</groupId>
  16. <artifactId>module-common</artifactId>
  17. <version>2.0.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-base-common</artifactId>
  22. <version>2.0.2</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <resources>
  27. <!-- 解决MyBatis配置文件引入问题 -->
  28. <resource>
  29. <directory>src/main/java</directory>
  30. <includes>
  31. <include>**/*.properties</include>
  32. <include>**/*.xml</include>
  33. </includes>
  34. <!-- 是否替换资源中的属性-->
  35. <filtering>false</filtering>
  36. </resource>
  37. <resource>
  38. <directory>src/main/resources</directory>
  39. </resource>
  40. </resources>
  41. </build>
  42. </project>