pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <dependency>
  25. <groupId>org.codehaus.jackson</groupId>
  26. <artifactId>jackson-core-asl</artifactId>
  27. <version>1.9.11</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <resources>
  33. <!-- 解决MyBatis配置文件引入问题 -->
  34. <resource>
  35. <directory>src/main/java</directory>
  36. <includes>
  37. <include>**/*.properties</include>
  38. <include>**/*.xml</include>
  39. </includes>
  40. <!-- 是否替换资源中的属性-->
  41. <filtering>false</filtering>
  42. </resource>
  43. <resource>
  44. <directory>src/main/resources</directory>
  45. </resource>
  46. </resources>
  47. </build>
  48. </project>