dependency-reduced-pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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-websocket-component</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. <include>org.luaj:luaj-jse</include>
  28. </includes>
  29. </artifactSet>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <source>${java.version}</source>
  36. <target>${java.version}</target>
  37. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  38. <useIncrementalCompilation>false</useIncrementalCompilation>
  39. <encoding>utf8</encoding>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.26</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>cc.iotkit</groupId>
  53. <artifactId>iot-common-core</artifactId>
  54. <version>0.4.5-SNAPSHOT</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. <version>1.7.36</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>cc.iotkit</groupId>
  65. <artifactId>iot-component-base</artifactId>
  66. <version>0.4.5-SNAPSHOT</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>