pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 https://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-alarm</artifactId>
  12. <version>2.0.2</version>
  13. <name>module-alarm</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.7</maven.compiler.source>
  17. <maven.compiler.target>1.7</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.com.ctop</groupId>
  22. <artifactId>module-common</artifactId>
  23. <version>2.0.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.com.ctop</groupId>
  27. <artifactId>module-kuaishou</artifactId>
  28. <version>2.0.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.com.ctop</groupId>
  32. <artifactId>module-toutiao</artifactId>
  33. <version>2.0.2</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <resources>
  39. <!-- 解决MyBatis配置文件引入问题 -->
  40. <resource>
  41. <directory>src/main/java</directory>
  42. <includes>
  43. <include>**/*.properties</include>
  44. <include>**/*.xml</include>
  45. </includes>
  46. <!-- 是否替换资源中的属性-->
  47. <filtering>false</filtering>
  48. </resource>
  49. <resource>
  50. <directory>src/main/resources</directory>
  51. </resource>
  52. </resources>
  53. </build>
  54. </project>