2023-02-27 05:25:38 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-components</artifactId>
|
|
|
|
<version>0.4.2-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>iot-components-engine</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2023-02-27 05:32:30 +00:00
|
|
|
<dependencies>
|
|
|
|
<!--javascript运行环境-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.graalvm.sdk</groupId>
|
|
|
|
<artifactId>graal-sdk</artifactId>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.graalvm.js</groupId>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.graalvm.js</groupId>
|
|
|
|
<artifactId>js-scriptengine</artifactId>
|
|
|
|
|
|
|
|
</dependency>
|
2023-03-02 07:37:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2023-02-27 05:32:30 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2023-02-27 05:25:38 +00:00
|
|
|
</project>
|