pom.xml 2.5 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. <parent>
  6. <artifactId>BladeX</artifactId>
  7. <groupId>org.springblade</groupId>
  8. <version>2.9.1.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>blade-service-api</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>2.9.1.RELEASE</version>
  14. <packaging>pom</packaging>
  15. <description>BladeX 微服务API集合</description>
  16. <modules>
  17. <module>blade-desk-api</module>
  18. <module>blade-dict-api</module>
  19. <module>blade-scope-api</module>
  20. <module>blade-system-api</module>
  21. <module>blade-user-api</module>
  22. <module>blade-business-api</module>
  23. <module>blade-manager-api</module>
  24. </modules>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springblade</groupId>
  28. <artifactId>blade-starter-mybatis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springblade</groupId>
  32. <artifactId>blade-starter-tenant</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-openfeign</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger2</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>io.swagger</groupId>
  44. <artifactId>swagger-models</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.swagger</groupId>
  50. <artifactId>swagger-models</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springblade</groupId>
  54. <artifactId>blade-core-auto</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <configuration>
  64. <skip>true</skip>
  65. <finalName>${project.name}</finalName>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>