pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>iot-iita-core</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>iot-script-engine</artifactId>
  12. <description>
  13. 此模块为脚本引擎
  14. </description>
  15. <properties>
  16. <maven.compiler.source>11</maven.compiler.source>
  17. <maven.compiler.target>11</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cc.iotkit</groupId>
  23. <artifactId>iot-common-core</artifactId>
  24. </dependency>
  25. <!--====================第三方库===================-->
  26. <!--javascript运行环境-->
  27. <dependency>
  28. <groupId>org.graalvm.sdk</groupId>
  29. <artifactId>graal-sdk</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.graalvm.js</groupId>
  33. <artifactId>js</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.graalvm.js</groupId>
  37. <artifactId>js-scriptengine</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-lang3</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.slf4j</groupId>
  45. <artifactId>slf4j-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-beanutils</groupId>
  49. <artifactId>commons-beanutils</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. <scope>provided</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <configuration>
  63. <source>${java.version}</source>
  64. <target>${java.version}</target>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>