12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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>qhiot-link-basic-mqtt</artifactId>
- <groupId>com.qhiot</groupId>
- <version>1.1.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>qhiot-web</artifactId>
- <version>1.1.1</version>
- <packaging>war</packaging>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-cloud-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-boot-starter-web</artifactId>
- </dependency>
- <!-- QH Modules -->
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-transport-server</artifactId>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-oss-manager</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>qhiot-link-basic-mqtt</finalName>
- <plugins>
- <!-- war包插件 -->
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <!-- 把class打包jar作为附件 -->
- <attachClasses>true</attachClasses>
- </configuration>
- </plugin>
- <!-- 指定启动入口 -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.qhiot.main.TomcatApplication</mainClass>
- </configuration>
- </plugin>
- </plugins>
- <!-- <resources>-->
- <!-- <resource>-->
- <!-- <directory>src/main/java</directory>-->
- <!-- <includes>-->
- <!-- <include>**/*.*</include>-->
- <!-- </includes>-->
- <!-- <filtering>false</filtering>-->
- <!-- </resource>-->
- <!-- <resource>-->
- <!-- <directory>src/main/resources</directory>-->
- <!-- <includes>-->
- <!-- <include>**/*.*</include>-->
- <!-- </includes>-->
- <!-- </resource>-->
- <!-- </resources>-->
- </build>
- </project>
|