pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.0.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>cn.com.ctop</groupId>
  12. <artifactId>module-crawler</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.com.ctop</groupId>
  16. <artifactId>module-common</artifactId>
  17. <version>2.0.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-base-common</artifactId>
  22. <version>2.0.2</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  27. <plugins>
  28. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  29. <plugin>
  30. <artifactId>maven-clean-plugin</artifactId>
  31. <version>3.1.0</version>
  32. </plugin>
  33. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  34. <plugin>
  35. <artifactId>maven-resources-plugin</artifactId>
  36. <version>3.0.2</version>
  37. </plugin>
  38. <plugin>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>3.8.0</version>
  41. </plugin>
  42. <plugin>
  43. <artifactId>maven-surefire-plugin</artifactId>
  44. <version>2.22.1</version>
  45. </plugin>
  46. <plugin>
  47. <artifactId>maven-jar-plugin</artifactId>
  48. <version>3.0.2</version>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-install-plugin</artifactId>
  52. <version>2.5.2</version>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-deploy-plugin</artifactId>
  56. <version>2.8.2</version>
  57. </plugin>
  58. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  59. <plugin>
  60. <artifactId>maven-site-plugin</artifactId>
  61. <version>3.7.1</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-project-info-reports-plugin</artifactId>
  65. <version>3.0.0</version>
  66. </plugin>
  67. </plugins>
  68. </pluginManagement>
  69. <resources>
  70. <!-- 解决MyBatis配置文件引入问题 -->
  71. <resource>
  72. <directory>src/main/java</directory>
  73. <includes>
  74. <include>**/*.properties</include>
  75. <include>**/*.xml</include>
  76. </includes>
  77. <!-- 是否替换资源中的属性-->
  78. <filtering>false</filtering>
  79. </resource>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. </resource>
  83. </resources>
  84. </build>
  85. </project>