.flattened-pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-script-engine</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <description>此模块为脚本引擎</description>
  14. <properties>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.graalvm.sdk</groupId>
  22. <artifactId>graal-sdk</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.graalvm.js</groupId>
  26. <artifactId>js</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.graalvm.js</groupId>
  30. <artifactId>js-scriptengine</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-lang3</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-api</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-beanutils</groupId>
  46. <artifactId>commons-beanutils</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cc.iotkit</groupId>
  50. <artifactId>iot-common-core</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <configuration>
  58. <source>${java.version}</source>
  59. <target>${java.version}</target>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>