dependency-reduced-pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>iot-components</artifactId>
  5. <groupId>cc.iotkit</groupId>
  6. <version>${revision}</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>iot-component-tcp</artifactId>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-shade-plugin</artifactId>
  14. <version>3.2.4</version>
  15. <executions>
  16. <execution>
  17. <phase>package</phase>
  18. <goals>
  19. <goal>shade</goal>
  20. </goals>
  21. </execution>
  22. </executions>
  23. <configuration>
  24. <artifactSet>
  25. <includes>
  26. <include>io.vertx:vertx-core</include>
  27. </includes>
  28. </artifactSet>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <configuration>
  34. <source>11</source>
  35. <target>11</target>
  36. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  37. <useIncrementalCompilation>false</useIncrementalCompilation>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <dependencies>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.13.2</version>
  47. <scope>test</scope>
  48. <exclusions>
  49. <exclusion>
  50. <artifactId>hamcrest-core</artifactId>
  51. <groupId>org.hamcrest</groupId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.projectreactor</groupId>
  57. <artifactId>reactor-core</artifactId>
  58. <version>3.4.13</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.vertx</groupId>
  63. <artifactId>vertx-core</artifactId>
  64. <version>4.2.2</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. <version>1.18.24</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.slf4j</groupId>
  75. <artifactId>slf4j-api</artifactId>
  76. <version>1.7.32</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>cc.iotkit</groupId>
  81. <artifactId>iot-common-core</artifactId>
  82. <version>0.4.3-SNAPSHOT</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>cc.iotkit</groupId>
  87. <artifactId>iot-component-base</artifactId>
  88. <version>0.4.3-SNAPSHOT</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>cc.iotkit</groupId>
  93. <artifactId>iot-data-service</artifactId>
  94. <version>0.4.3-SNAPSHOT</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>cc.iotkit</groupId>
  99. <artifactId>iot-script-engine</artifactId>
  100. <version>0.4.3-SNAPSHOT</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. </dependencies>
  104. <properties>
  105. <maven.compiler.target>11</maven.compiler.target>
  106. <maven.compiler.source>11</maven.compiler.source>
  107. </properties>
  108. </project>