pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.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-purchase-sales-api</module>
  24. <module>blade-deliver-goods-api</module>
  25. <module>blade-stock-api</module>
  26. <module>blade-mocha-item-api</module>
  27. <module>trade-purchase-api</module>
  28. <module>blade-project-api</module>
  29. <module>trade-finance-api</module>
  30. <module>store-goods-api</module>
  31. <module>blade-check-api</module>
  32. <module>blade-school-api</module>
  33. <module>blade-land-api</module>
  34. <module>blade-box-tube-api</module>
  35. <module>blade-payment-api</module>
  36. <module>blade-sales-part-api</module>
  37. <module>blade-los-api</module>
  38. <module>blade-weChat-api</module>
  39. </modules>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.springblade</groupId>
  43. <artifactId>blade-starter-mybatis</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springblade</groupId>
  47. <artifactId>blade-starter-tenant</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-openfeign</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springblade</groupId>
  55. <artifactId>blade-starter-excel</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.springfox</groupId>
  59. <artifactId>springfox-swagger2</artifactId>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>io.swagger</groupId>
  63. <artifactId>swagger-models</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.swagger</groupId>
  69. <artifactId>swagger-models</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springblade</groupId>
  73. <artifactId>blade-core-auto</artifactId>
  74. <scope>provided</scope>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. <configuration>
  83. <skip>true</skip>
  84. <finalName>${project.name}</finalName>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>