.flattened-pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-common-doc</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.springfox</groupId>
  25. <artifactId>springfox-boot-starter</artifactId>
  26. <version>3.0.0</version>
  27. <exclusions>
  28. <exclusion>
  29. <artifactId>swagger-models</artifactId>
  30. <groupId>io.swagger</groupId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-models</artifactId>
  37. <version>1.6.8</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.xiaoymin</groupId>
  41. <artifactId>knife4j-spring-boot-starter</artifactId>
  42. <version>3.0.3</version>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <configuration>
  50. <source>${java.version}</source>
  51. <target>${java.version}</target>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>