pom.xml 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  34. <plugins>
  35. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  36. <plugin>
  37. <artifactId>maven-clean-plugin</artifactId>
  38. <version>3.1.0</version>
  39. </plugin>
  40. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  41. <plugin>
  42. <artifactId>maven-resources-plugin</artifactId>
  43. <version>3.0.2</version>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.8.0</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <version>2.22.1</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-jar-plugin</artifactId>
  55. <version>3.0.2</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-install-plugin</artifactId>
  59. <version>2.5.2</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-deploy-plugin</artifactId>
  63. <version>2.8.2</version>
  64. </plugin>
  65. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  66. <plugin>
  67. <artifactId>maven-site-plugin</artifactId>
  68. <version>3.7.1</version>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-project-info-reports-plugin</artifactId>
  72. <version>3.0.0</version>
  73. </plugin>
  74. </plugins>
  75. </pluginManagement>
  76. <resources>
  77. <!-- 解决MyBatis配置文件引入问题 -->
  78. <resource>
  79. <directory>src/main/java</directory>
  80. <includes>
  81. <include>**/*.properties</include>
  82. <include>**/*.xml</include>
  83. </includes>
  84. <!-- 是否替换资源中的属性-->
  85. <filtering>false</filtering>
  86. </resource>
  87. <resource>
  88. <directory>src/main/resources</directory>
  89. </resource>
  90. </resources>
  91. </build>
  92. </project>