pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-websocket-component</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.vertx</groupId>
  15. <artifactId>vertx-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.slf4j</groupId>
  23. <artifactId>slf4j-api</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.luaj</groupId>
  27. <artifactId>luaj-jse</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.iotkit</groupId>
  31. <artifactId>iot-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>cc.iotkit</groupId>
  35. <artifactId>iot-component-base</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cc.iotkit</groupId>
  39. <artifactId>iot-data-service</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-shade-plugin</artifactId>
  47. <version>3.2.4</version>
  48. <executions>
  49. <execution>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>shade</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. <configuration>
  57. <artifactSet>
  58. <includes>
  59. <include>io.vertx:vertx-core</include>
  60. <include>org.luaj:luaj-jse</include>
  61. </includes>
  62. </artifactSet>
  63. </configuration>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <configuration>
  69. <source>11</source>
  70. <target>11</target>
  71. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  72. <useIncrementalCompilation>false</useIncrementalCompilation>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>