82 lines
2.9 KiB
XML
82 lines
2.9 KiB
XML
|
<?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/maven-v4_0_0.xsd">
|
||
|
<parent>
|
||
|
<artifactId>yudao-module-iot-plugin</artifactId>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<version>2.2.0-snapshot</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>yudao-module-iot-http-plugin</artifactId>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<version>2.2.0-snapshot</version>
|
||
|
<description>物联网 插件模块 - http 插件</description>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifestEntries>
|
||
|
<Plugin-Id>${plugin.id}</Plugin-Id>
|
||
|
<Plugin-Class>${plugin.class}</Plugin-Class>
|
||
|
<Plugin-Version>${plugin.version}</Plugin-Version>
|
||
|
<Plugin-Provider>${plugin.provider}</Plugin-Provider>
|
||
|
<Plugin-Description>${plugin.description}</Plugin-Description>
|
||
|
<Plugin-Dependencies>${plugin.dependencies}</Plugin-Dependencies>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.4.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
||
|
<shadedClassifierName>shaded</shadedClassifierName>
|
||
|
<transformers>
|
||
|
<transformer>
|
||
|
<mainClass>cn.iocoder.yudao.module.iot.HttpPluginSpringbootApplication</mainClass>
|
||
|
</transformer>
|
||
|
</transformers>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.pf4j</groupId>
|
||
|
<artifactId>pf4j-spring</artifactId>
|
||
|
<version>0.9.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.34</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<properties>
|
||
|
<plugin.class>cn.iocoder.yudao.module.iot.plugin.HttpVertxPlugin</plugin.class>
|
||
|
<plugin.version>0.0.1</plugin.version>
|
||
|
<plugin.id>http-plugin</plugin.id>
|
||
|
<plugin.description>http-plugin-0.0.1</plugin.description>
|
||
|
<plugin.provider>ahh</plugin.provider>
|
||
|
</properties>
|
||
|
</project>
|