pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.4.3-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-script-engine</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!--javascript运行环境-->
  19. <dependency>
  20. <groupId>org.graalvm.sdk</groupId>
  21. <artifactId>graal-sdk</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.graalvm.js</groupId>
  25. <artifactId>js</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.graalvm.js</groupId>
  29. <artifactId>js-scriptengine</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-lang3</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-beanutils</groupId>
  37. <artifactId>commons-beanutils</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cc.iotkit</groupId>
  45. <artifactId>iot-common</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>