pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>com.qhiot</groupId>
  8. <artifactId>qhiot-common</artifactId>
  9. <version>1.1.1</version>
  10. </parent>
  11. <artifactId>qhiot-boot-starter-web</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.qhiot</groupId>
  15. <artifactId>qhiot-common-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>spring-boot-starter-logging</artifactId>
  23. <groupId>org.springframework.boot</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.qhiot</groupId>
  29. <artifactId>qhiot-common-core</artifactId>
  30. </dependency>
  31. </dependencies>
  32. </project>