dependency-reduced-pom.xml 3.1 KB

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