pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <groupId>com.wtkj</groupId>
  6. <artifactId>wt-service-okr</artifactId>
  7. <version>1.0.RELEASE</version>
  8. </parent>
  9. <artifactId>blade-service-api</artifactId>
  10. <packaging>pom</packaging>
  11. <name>blade-service-api</name>
  12. <modules>
  13. <module>wt-okr-api</module>
  14. </modules>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springblade</groupId>
  18. <artifactId>blade-starter-mybatis</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springblade</groupId>
  22. <artifactId>blade-starter-tenant</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.springfox</groupId>
  30. <artifactId>springfox-swagger2</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>io.swagger</groupId>
  34. <artifactId>swagger-models</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.swagger</groupId>
  40. <artifactId>swagger-models</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springblade</groupId>
  44. <artifactId>blade-core-auto</artifactId>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.wtkj</groupId>
  49. <artifactId>blade-common</artifactId>
  50. <version>1.0.RELEASE</version>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <configuration>
  59. <skip>true</skip>
  60. <finalName>${project.name}</finalName>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>