pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.ssssssss</groupId>
  8. <artifactId>magic-api-plugins</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>magic-api-plugin-swagger</artifactId>
  12. <packaging>jar</packaging>
  13. <name>magic-api-plugin-swagger</name>
  14. <description>magic-api-plugin-swagger</description>
  15. <properties>
  16. <swagger.version>2.9.2</swagger.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-configuration-processor</artifactId>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-swagger2</artifactId>
  27. <version>${swagger.version}</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. </dependencies>
  31. </project>