pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. <configuration>
  54. <skip>true</skip>
  55. <finalName>${project.name}</finalName>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>