pom.xml 2.2 KB

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