pom.xml 2.9 KB

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