pom.xml 2.6 KB

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