pom.xml 3.0 KB

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