pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.xxh.cloud</groupId>
  7. <artifactId>xx-framework-java</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0</version>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <maven.compiler.source>8</maven.compiler.source>
  13. <maven.compiler.target>8</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xxh.cloud</groupId>
  20. <artifactId>xx-framework-dependencies</artifactId>
  21. <version>1.0.0</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. </dependencies>
  26. </dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-aop</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context-support</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <modules>
  59. <module>xx-framework-dependencies</module>
  60. <module>xx-config-web</module>
  61. <module>xx-framework-core</module>
  62. <module>xx-config-framework</module>
  63. <module>xx-config-elasticsearch</module>
  64. <module>xx-config-mybatisplus</module>
  65. <module>xx-config-kafka</module>
  66. <module>xx-config-script</module>
  67. <module>xx-config-activemq</module>
  68. <module>xx-api-wrap</module>
  69. </modules>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.6.1</version>
  76. <configuration>
  77. <source>1.8</source>
  78. <target>1.8</target>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>