pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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-report</artifactId>
  12. <name>module-report</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>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.11</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.com.ctop</groupId>
  29. <artifactId>module-common</artifactId>
  30. <version>2.0.2</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jeecgframework.boot</groupId>
  35. <artifactId>jeecg-boot-base-common</artifactId>
  36. <version>2.0.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.com.ctop</groupId>
  40. <artifactId>module-kuaishou</artifactId>
  41. <version>2.0.2</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.jeecgframework.boot</groupId>
  46. <artifactId>jeecg-boot-base-common</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <resources>
  51. <!-- 解决MyBatis配置文件引入问题 -->
  52. <resource>
  53. <directory>src/main/java</directory>
  54. <includes>
  55. <include>**/*.properties</include>
  56. <include>**/*.xml</include>
  57. </includes>
  58. <!-- 是否替换资源中的属性-->
  59. <filtering>false</filtering>
  60. </resource>
  61. <resource>
  62. <directory>src/main/resources</directory>
  63. </resource>
  64. </resources>
  65. </build>
  66. </project>