pom.xml 3.3 KB

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