pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <parent>
  6. <artifactId>iot</artifactId>
  7. <groupId>com.yushu</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>iot-framework</artifactId>
  13. <packaging>pom</packaging>
  14. <name>${project.artifactId}</name>
  15. <description>the framework for iot</description>
  16. <modules>
  17. <module>iot-common</module>
  18. <module>iot-spring-boot-starter-excel</module>
  19. <module>iot-spring-boot-starter-web</module>
  20. <module>iot-spring-boot-starter-redis</module>
  21. <module>iot-spring-boot-starter-mybatis</module>
  22. <module>iot-spring-boot-starter-test</module>
  23. <module>iot-spring-boot-starter-extension</module>
  24. </modules>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-deploy-plugin</artifactId>
  30. <version>${maven-deploy-plugin.version}</version>
  31. <configuration>
  32. <skip>true</skip>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>