pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>jetlinks-components</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>script-component</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.google.guava</groupId>
  16. <artifactId>guava</artifactId>
  17. </dependency>
  18. <!-- <dependency>-->
  19. <!-- <groupId>org.graalvm.js</groupId>-->
  20. <!-- <artifactId>js-scriptengine</artifactId>-->
  21. <!-- <version>21.2.0</version>-->
  22. <!-- <optional>true</optional>-->
  23. <!-- </dependency>-->
  24. <dependency>
  25. <groupId>org.jetlinks</groupId>
  26. <artifactId>reactor-ql</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.junit.jupiter</groupId>
  30. <artifactId>junit-jupiter</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. </dependencies>
  34. </project>