pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.1.0</version>
  10. </parent>
  11. <artifactId>magic-api-plugin-springdoc</artifactId>
  12. <packaging>jar</packaging>
  13. <name>magic-api-plugin-springdoc</name>
  14. <description>magic-api-plugin-springdoc</description>
  15. <properties>
  16. <springdoc.version>2.0.4</springdoc.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>org.springdoc</groupId>
  26. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  27. <version>${springdoc.version}</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>jakarta.servlet</groupId>
  32. <artifactId>jakarta.servlet-api</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <version>3.10.1</version>
  42. <configuration>
  43. <source>17</source>
  44. <target>17</target>
  45. <encoding>UTF-8</encoding>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>