| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?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>soulcall-http-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.vertx</groupId>
- <artifactId>vertx-web</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-rx-java2</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-client</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-http-proxy</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-proxy</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>cc.iotkit</groupId>-->
- <!-- <artifactId>iot-openapi</artifactId>-->
- <!-- <version>0.5.0-SNAPSHOT</version>-->
- <!-- <scope>provided</scope>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.8.9</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <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>
- <version>${spring-brick.version}</version>
- <configuration>
- <mode>${plugin.build.mode}</mode>
- <pluginInfo>
- <id>soulcall-plugin</id>
- <bootstrapClass>cc.iotkit.plugins.soulcall.Application</bootstrapClass>
- <version>${project.version}</version>
- <provider>potevio</provider>
- <description>soulcall示例插件,配置参数:端口(port)默认9888</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>
|