1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>iot</artifactId>
- <groupId>com.yushu</groupId>
- <version>${revision}</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>iot-framework</artifactId>
- <packaging>pom</packaging>
- <name>${project.artifactId}</name>
- <description>the framework for iot</description>
- <modules>
- <module>iot-common</module>
- <module>iot-spring-boot-starter-excel</module>
- <module>iot-spring-boot-starter-web</module>
- <module>iot-spring-boot-starter-redis</module>
- <module>iot-spring-boot-starter-mybatis</module>
- <module>iot-spring-boot-starter-test</module>
- <module>iot-spring-boot-starter-extension</module>
- </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>${maven-deploy-plugin.version}</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|