mirror of
https://gitee.com/myxzgzs/boyuehasfj-java.git
synced 2025-08-08 06:52:42 +08:00
64 lines
1.9 KiB
XML
64 lines
1.9 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>boyue-models</artifactId>
|
|
<groupId>com.boyue</groupId>
|
|
<version>3.8.9-G</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>boyue-flowable</artifactId>
|
|
|
|
<description>
|
|
form表单
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-system</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Flowable启动引擎 -->
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
|
<version>7.1.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-security</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
<artifactId>aviator</artifactId>
|
|
<version>5.3.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js</artifactId>
|
|
<version>24.2.1</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js-scriptengine</artifactId>
|
|
<version>24.2.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-form</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |