| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>iot-iita-plugins</artifactId>
- <groupId>cc.iotkit.plugins</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>mattress-tcp-plugin</artifactId>
- <properties>
- <maven.compiler.source>11</maven.compiler.source>
- <maven.compiler.target>11</maven.compiler.target>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-core</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport</artifactId>
- </dependency>
- <dependency>
- <groupId>org.msgpack</groupId>
- <artifactId>jackson-dataformat-msgpack</artifactId>
- <version>0.7.1</version>
- <!-- <version>0.9.6</version>-->
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>io.vertx</groupId>-->
- <!-- <artifactId>vertx-mongo-client</artifactId>-->
- <!-- <version>${vertx.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>io.vertx</groupId>-->
- <!-- <artifactId>vertx-auth-mongo</artifactId>-->
- <!-- <version>${vertx.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>dev</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <plugin.build.mode>dev</plugin.build.mode>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <plugin.build.mode>prod</plugin.build.mode>
- </properties>
- </profile>
- </profiles>
- <build>
- <plugins>
- <plugin>
- <groupId>com.gitee.starblues</groupId>
- <artifactId>spring-brick-maven-packager</artifactId>
- <configuration>
- <mode>${plugin.build.mode}</mode>
- <pluginInfo>
- <id>mattress-tcp-plugin</id>
- <bootstrapClass>cc.iotkit.plugins.mattress.Application</bootstrapClass>
- <version>${project.version}</version>
- <provider>cpit</provider>
- <description>mattress-tcp示例插件</description>
- <configFileName>application.yml</configFileName>
- </pluginInfo>
- <prodConfig>
- <packageType>jar</packageType>
- </prodConfig>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|