2024-12-16 22:25:01 +08:00
|
|
|
<?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">
|
2024-12-20 18:57:40 +08:00
|
|
|
<parent>
|
|
|
|
<artifactId>yudao-module-iot-plugin</artifactId>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
2024-12-16 22:25:01 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2024-12-20 18:57:40 +08:00
|
|
|
<artifactId>yudao-module-iot-http-plugin</artifactId>
|
|
|
|
|
2024-12-16 22:25:01 +08:00
|
|
|
<name>${project.artifactId}</name>
|
2024-12-20 18:57:40 +08:00
|
|
|
<description>
|
|
|
|
物联网 插件模块 - http 插件
|
|
|
|
</description>
|
2024-12-16 22:25:01 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- 插件相关 -->
|
|
|
|
<plugin.id>http-plugin</plugin.id>
|
2025-01-07 23:13:57 +08:00
|
|
|
<plugin.class>cn.iocoder.yudao.module.iot.plugin.HttpVertxPlugin</plugin.class>
|
2024-12-16 22:25:01 +08:00
|
|
|
<plugin.version>0.0.1</plugin.version>
|
|
|
|
<plugin.provider>ahh</plugin.provider>
|
2024-12-29 22:31:58 +08:00
|
|
|
<plugin.description>http-plugin-0.0.1</plugin.description>
|
2024-12-16 22:25:01 +08:00
|
|
|
<plugin.dependencies/>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2024-12-20 18:57:40 +08:00
|
|
|
<version>1.6</version>
|
2024-12-16 22:25:01 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unzip jar file</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
2024-12-20 18:57:40 +08:00
|
|
|
<unzip src="target/${project.artifactId}-${project.version}.${project.packaging}"
|
|
|
|
dest="target/plugin-classes"/>
|
2024-12-16 22:25:01 +08:00
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2024-12-20 18:57:40 +08:00
|
|
|
<version>2.3</version>
|
2024-12-16 22:25:01 +08:00
|
|
|
<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>
|
2024-12-20 18:57:40 +08:00
|
|
|
<version>2.4</version>
|
2024-12-16 22:25:01 +08:00
|
|
|
<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>
|
2024-12-29 22:31:58 +08:00
|
|
|
<Plugin-Description>${plugin.description}</Plugin-Description>
|
2024-12-16 22:25:01 +08:00
|
|
|
<Plugin-Dependencies>${plugin.dependencies}</Plugin-Dependencies>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2025-01-07 23:13:57 +08:00
|
|
|
|
|
|
|
<!-- <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>-->
|
2024-12-16 22:25:01 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-12-20 18:57:40 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- 其他依赖项 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</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>
|
2025-01-15 22:37:07 +08:00
|
|
|
<!-- Vert.x Web -->
|
2024-12-20 18:57:40 +08:00
|
|
|
<dependency>
|
2025-01-07 23:13:57 +08:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web</artifactId>
|
2025-01-15 22:37:07 +08:00
|
|
|
<version>4.5.11</version>
|
2025-01-06 18:59:26 +08:00
|
|
|
</dependency>
|
2024-12-20 18:57:40 +08:00
|
|
|
</dependencies>
|
2024-12-16 22:25:01 +08:00
|
|
|
</project>
|