pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  5. <artifactId>jeecg-boot-parent</artifactId>
  6. <groupId>org.jeecgframework.boot</groupId>
  7. <version>2.0.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>cn.com.ctop</groupId>
  11. <artifactId>module-kuaishou</artifactId>
  12. <name>module-kuaishou</name>
  13. <!-- FIXME change it to the project's website -->
  14. <url>http://www.example.com</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.7</maven.compiler.source>
  18. <maven.compiler.target>1.7</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.com.ctop</groupId>
  23. <artifactId>module-common</artifactId>
  24. <version>2.0.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.com.ctop</groupId>
  28. <artifactId>module-crawler</artifactId>
  29. <version>2.0.2</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <resources>
  34. <!-- 解决MyBatis配置文件引入问题 -->
  35. <resource>
  36. <directory>src/main/java</directory>
  37. <includes>
  38. <include>**/*.properties</include>
  39. <include>**/*.xml</include>
  40. </includes>
  41. <!-- 是否替换资源中的属性-->
  42. <filtering>false</filtering>
  43. </resource>
  44. <resource>
  45. <directory>src/main/resources</directory>
  46. </resource>
  47. </resources>
  48. </build>
  49. </project>