pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>wt-service-okr</artifactId>
  6. <groupId>org.springblade</groupId>
  7. <version>2.9.1.RELEASE</version>
  8. </parent>
  9. <artifactId>blade-service-api</artifactId>
  10. <packaging>pom</packaging>
  11. <name>blade-service-api</name>
  12. <version>2.9.1.RELEASE</version>
  13. <modules>
  14. <module>wt-okr-api</module>
  15. </modules>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springblade</groupId>
  19. <artifactId>blade-starter-mybatis</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springblade</groupId>
  23. <artifactId>blade-starter-tenant</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-openfeign</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-swagger2</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>io.swagger</groupId>
  35. <artifactId>swagger-models</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.swagger</groupId>
  41. <artifactId>swagger-models</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springblade</groupId>
  45. <artifactId>blade-core-auto</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <configuration>
  55. <skip>true</skip>
  56. <finalName>${project.name}</finalName>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>