pom.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>org.jeecgframework.boot</groupId>
  11. <artifactId>module-ctop</artifactId>
  12. <name>module-ctop</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-toutiao</artifactId>
  24. <version>2.0.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.com.ctop</groupId>
  28. <artifactId>module-kuaishou</artifactId>
  29. <version>2.0.2</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>4.11</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>jeecg-boot-base-common</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  44. <plugins>
  45. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  46. <plugin>
  47. <artifactId>maven-clean-plugin</artifactId>
  48. <version>3.1.0</version>
  49. </plugin>
  50. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  51. <plugin>
  52. <artifactId>maven-resources-plugin</artifactId>
  53. <version>3.0.2</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.8.0</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <version>2.22.1</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-jar-plugin</artifactId>
  65. <version>3.0.2</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-install-plugin</artifactId>
  69. <version>2.5.2</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-deploy-plugin</artifactId>
  73. <version>2.8.2</version>
  74. </plugin>
  75. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  76. <plugin>
  77. <artifactId>maven-site-plugin</artifactId>
  78. <version>3.7.1</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-project-info-reports-plugin</artifactId>
  82. <version>3.0.0</version>
  83. </plugin>
  84. </plugins>
  85. </pluginManagement>
  86. </build>
  87. </project>