dependency-reduced-pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <artifactId>yudao-module-iot-plugin</artifactId>
  5. <groupId>cn.iocoder.boot</groupId>
  6. <version>2.2.0-snapshot</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>yudao-module-iot-plugin-http</artifactId>
  10. <name>${project.artifactId}</name>
  11. <version>1.0.0</version>
  12. <description>物联网 插件模块 - http 插件</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-shade-plugin</artifactId>
  17. <version>3.2.4</version>
  18. <executions>
  19. <execution>
  20. <phase>package</phase>
  21. <goals>
  22. <goal>shade</goal>
  23. </goals>
  24. <configuration>
  25. <transformers>
  26. <transformer>
  27. <mainClass>com.example.HttpPluginSpringbootApplication</mainClass>
  28. </transformer>
  29. </transformers>
  30. </configuration>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <properties>
  37. <plugin.id>${project.artifactId}</plugin.id>
  38. <plugin.description>${project.artifactId}-${project.version}</plugin.description>
  39. <plugin.class>cn.iocoder.yudao.module.iot.config.HttpVertxPlugin</plugin.class>
  40. <plugin.version>${project.version}</plugin.version>
  41. <plugin.provider>yudao</plugin.provider>
  42. </properties>
  43. </project>