pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.kingtom.kirin</groupId>
  7. <artifactId>kirin_spring_boot</artifactId>
  8. <version>1.0</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>kirin_core</module>
  12. <module>kirin_app</module>
  13. <module>kirin_dependencies</module>
  14. <module>kirin_api_core</module>
  15. <module>kirin_generator_core</module>
  16. </modules>
  17. <dependencyManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.kingtom.kirin</groupId>
  21. <artifactId>kirin_dependencies</artifactId>
  22. <version>1.0</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. </dependencies>
  27. </dependencyManagement>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <version>3.11.0</version>
  34. <configuration>
  35. <source>17</source>
  36. <target>17</target>
  37. <annotationProcessorPaths>
  38. <path>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>1.18.26</version>
  42. </path>
  43. <path>
  44. <groupId>org.mapstruct</groupId>
  45. <artifactId>mapstruct-processor</artifactId>
  46. <version>1.5.5.Final</version>
  47. </path>
  48. <path>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok-mapstruct-binding</artifactId>
  51. <version>0.2.0</version>
  52. </path>
  53. </annotationProcessorPaths>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <distributionManagement>
  59. <repository>
  60. <id>releases</id>
  61. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  62. </repository>
  63. <snapshotRepository>
  64. <id>snapshots</id>
  65. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  66. </snapshotRepository>
  67. </distributionManagement>
  68. </project>