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.6.0.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>blade-service-api</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>2.6.0.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-food-api</module>
  23. </modules>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springblade</groupId>
  27. <artifactId>blade-starter-mybatis</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springblade</groupId>
  31. <artifactId>blade-starter-tenant</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-openfeign</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-swagger2</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>io.swagger</groupId>
  43. <artifactId>swagger-models</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.swagger</groupId>
  49. <artifactId>swagger-models</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springblade</groupId>
  53. <artifactId>blade-core-auto</artifactId>
  54. <scope>provided</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. <configuration>
  63. <skip>true</skip>
  64. <finalName>${project.name}</finalName>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>