You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.9 KiB
60 lines
1.9 KiB
<?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>com.thing</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>5.1</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>script</artifactId>
|
|
<name>ThingBI Server Common script</name>
|
|
<packaging>jar</packaging>
|
|
<groupId>com.thing.common</groupId>
|
|
<properties>
|
|
<main.dir>${basedir}/../..</main.dir>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>cache</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>util</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javadelight</groupId>
|
|
<artifactId>delight-nashorn-sandbox</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
<artifactId>aviator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.thingsboard</groupId>
|
|
<artifactId>tbel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>orm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thing.common</groupId>
|
|
<artifactId>tskv</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|