pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <module>blade-e-visa-api</module>
  25. <module>blade-archive-api</module>
  26. <module>blade-control-api</module>
  27. <module>blade-land-api</module>
  28. <module>blade-meter-api</module>
  29. <module>blade-rabbitmq-producer-api</module>
  30. </modules>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springblade</groupId>
  34. <artifactId>blade-starter-mybatis</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springblade</groupId>
  38. <artifactId>blade-starter-tenant</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-openfeign</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.springfox</groupId>
  46. <artifactId>springfox-swagger2</artifactId>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>io.swagger</groupId>
  50. <artifactId>swagger-models</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.swagger</groupId>
  56. <artifactId>swagger-models</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springblade</groupId>
  60. <artifactId>blade-core-auto</artifactId>
  61. <scope>provided</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <configuration>
  70. <skip>true</skip>
  71. <finalName>${project.name}</finalName>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>