pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>iot-iita-plugins</artifactId>
  7. <groupId>cc.iotkit.plugins</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>soulcall-http-plugin</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>io.vertx</groupId>
  19. <artifactId>vertx-core</artifactId>
  20. <version>${vertx.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.vertx</groupId>
  24. <artifactId>vertx-web</artifactId>
  25. <version>${vertx.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.vertx</groupId>
  29. <artifactId>vertx-rx-java2</artifactId>
  30. <version>${vertx.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.vertx</groupId>
  34. <artifactId>vertx-web-client</artifactId>
  35. <version>${vertx.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.vertx</groupId>
  39. <artifactId>vertx-http-proxy</artifactId>
  40. <version>${vertx.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.vertx</groupId>
  44. <artifactId>vertx-web-proxy</artifactId>
  45. <version>${vertx.version}</version>
  46. </dependency>
  47. <!-- <dependency>-->
  48. <!-- <groupId>cc.iotkit</groupId>-->
  49. <!-- <artifactId>iot-openapi</artifactId>-->
  50. <!-- <version>0.5.0-SNAPSHOT</version>-->
  51. <!-- <scope>provided</scope>-->
  52. <!-- </dependency>-->
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>5.8.9</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>junit</groupId>
  60. <artifactId>junit</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. <profiles>
  65. <profile>
  66. <id>dev</id>
  67. <activation>
  68. <activeByDefault>true</activeByDefault>
  69. </activation>
  70. <properties>
  71. <plugin.build.mode>dev</plugin.build.mode>
  72. </properties>
  73. </profile>
  74. <profile>
  75. <id>prod</id>
  76. <properties>
  77. <plugin.build.mode>prod</plugin.build.mode>
  78. </properties>
  79. </profile>
  80. </profiles>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>com.gitee.starblues</groupId>
  85. <artifactId>spring-brick-maven-packager</artifactId>
  86. <version>${spring-brick.version}</version>
  87. <configuration>
  88. <mode>${plugin.build.mode}</mode>
  89. <pluginInfo>
  90. <id>soulcall-plugin</id>
  91. <bootstrapClass>cc.iotkit.plugins.soulcall.Application</bootstrapClass>
  92. <version>${project.version}</version>
  93. <provider>potevio</provider>
  94. <description>soulcall示例插件,配置参数:端口(port)默认9888</description>
  95. <configFileName>application.yml</configFileName>
  96. </pluginInfo>
  97. <prodConfig>
  98. <packageType>jar</packageType>
  99. </prodConfig>
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>