pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>blade-service-api</artifactId>
  12. <name>${project.artifactId}</name>
  13. <packaging>pom</packaging>
  14. <description>BladeX 微服务API集合</description>
  15. <modules>
  16. <module>blade-desk-api</module>
  17. <module>blade-dict-api</module>
  18. <module>blade-scope-api</module>
  19. <module>blade-system-api</module>
  20. <module>blade-user-api</module>
  21. <module>blade-demo-api</module>
  22. <module>blade-jdrh-api</module>
  23. <module>application-management-api</module>
  24. <module>zf-api</module>
  25. <module>command-center-api</module>
  26. <module>mpush-api</module>
  27. </modules>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springblade</groupId>
  31. <artifactId>blade-starter-mybatis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springblade</groupId>
  35. <artifactId>blade-starter-tenant</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-openfeign</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.swagger.core.v3</groupId>
  43. <artifactId>swagger-annotations</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springblade</groupId>
  47. <artifactId>blade-core-auto</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <configuration>
  57. <skip>true</skip>
  58. <finalName>${project.name}</finalName>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>