pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>Kd-Cloud</artifactId>
  7. <groupId>org.sky</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kd-service-api</artifactId>
  12. <name>${project.artifactId}</name>
  13. <packaging>pom</packaging>
  14. <description>微服务API集合</description>
  15. <modules>
  16. <module>kd-desk-api</module>
  17. <module>kd-dict-api</module>
  18. <module>kd-scope-api</module>
  19. <module>kd-system-api</module>
  20. <module>kd-user-api</module>
  21. <module>kd-scientific-api</module>
  22. </modules>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.sky</groupId>
  26. <artifactId>kd-starter-mybatis</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.sky</groupId>
  30. <artifactId>kd-starter-tenant</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-starter-openfeign</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.swagger.core.v3</groupId>
  38. <artifactId>swagger-annotations</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.sky</groupId>
  42. <artifactId>kd-core-auto</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. <configuration>
  52. <skip>true</skip>
  53. <finalName>${project.name}</finalName>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <configuration>
  60. <source>16</source>
  61. <target>16</target>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>