pom.xml 2.7 KB

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