|
@@ -1,157 +0,0 @@
|
|
|
-<?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>yudao-module-iot-plugin</artifactId>
|
|
|
- <groupId>cn.iocoder.boot</groupId>
|
|
|
- <version>${revision}</version>
|
|
|
- </parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <artifactId>yudao-module-iot-http-plugin</artifactId>
|
|
|
-
|
|
|
- <name>${project.artifactId}</name>
|
|
|
- <description>
|
|
|
- 物联网 插件模块 - http 插件
|
|
|
- </description>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <!-- 插件相关 -->
|
|
|
- <plugin.id>http-plugin</plugin.id>
|
|
|
- <plugin.class>cn.iocoder.yudao.module.iot.plugin.HttpVertxPlugin</plugin.class>
|
|
|
- <plugin.version>0.0.1</plugin.version>
|
|
|
- <plugin.provider>ahh</plugin.provider>
|
|
|
- <plugin.description>http-plugin-0.0.1</plugin.description>
|
|
|
- <plugin.dependencies/>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-antrun-plugin</artifactId>
|
|
|
- <version>1.6</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>unzip jar file</id>
|
|
|
- <phase>package</phase>
|
|
|
- <configuration>
|
|
|
- <target>
|
|
|
- <unzip src="target/${project.artifactId}-${project.version}.${project.packaging}"
|
|
|
- dest="target/plugin-classes"/>
|
|
|
- </target>
|
|
|
- </configuration>
|
|
|
- <goals>
|
|
|
- <goal>run</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-assembly-plugin</artifactId>
|
|
|
- <version>2.3</version>
|
|
|
- <configuration>
|
|
|
- <descriptors>
|
|
|
- <descriptor>
|
|
|
- src/main/assembly/assembly.xml
|
|
|
- </descriptor>
|
|
|
- </descriptors>
|
|
|
- <appendAssemblyId>false</appendAssemblyId>
|
|
|
- </configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>make-assembly</id>
|
|
|
- <phase>package</phase>
|
|
|
- <goals>
|
|
|
- <goal>attached</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <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>-->
|
|
|
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
- <!-- <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 implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">-->
|
|
|
- <!-- <mainClass>cn.iocoder.yudao.module.iot.HttpPluginSpringbootApplication</mainClass>-->
|
|
|
- <!-- </transformer>-->
|
|
|
- <!-- </transformers>-->
|
|
|
- <!-- </configuration>-->
|
|
|
- <!-- </execution>-->
|
|
|
- <!-- </executions>-->
|
|
|
- <!-- </plugin>-->
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
- <!-- 其他依赖项 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- PF4J Spring 集成 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.pf4j</groupId>
|
|
|
- <artifactId>pf4j-spring</artifactId>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <!-- 项目依赖 -->
|
|
|
- <dependency>
|
|
|
- <groupId>cn.iocoder.boot</groupId>
|
|
|
- <artifactId>yudao-module-iot-api</artifactId>
|
|
|
- <version>${revision}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- <version>${lombok.version}</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <!-- Vert.x Web -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.vertx</groupId>
|
|
|
- <artifactId>vertx-web</artifactId>
|
|
|
- <version>4.5.11</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
-</project>
|