<?xml version="1.0" encoding="UTF-8"?>
<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"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jeecgframework.boot3</groupId>
  <artifactId>jeecg-aiflow</artifactId>
  <version>3.9.1-beta</version>
  <name>jeecg-aiflow</name>
  <url>http://www.jeecg.com</url>
  
    <description>JeecgBoot AI应用开发平台（AIGC模块）</description>
  
    <licenses>
        <license>
            <name>功能免费使用，采用LGPL开源协议</name>
            <url>https://jeecg.com/vip</url>
        </license>
    </licenses>
    
    <scm>  
      <connection>scm:git:https://github.com/jeecgboot/JeecgBoot.git</connection>
      <developerConnection>scm:git:https://github.com/jeecgboot/JeecgBoot.git</developerConnection>  
      <url>https://github.com/jeecgboot/JeecgBoot</url>  
    </scm>
    
    <developers>
        <developer>
            <name>北京国炬信息技术有限公司</name>
            <email>jeecgos@163.com</email>
            <url>http://guojusoft.com</url>
        </developer>
    </developers>

    <properties>
        <kotlin.version>2.2.0</kotlin.version>
        <liteflow.version>2.15.0</liteflow.version>
    </properties>

    <dependencies>
        <!-- liteflow -->
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-spring-boot-starter</artifactId>
            <version>${liteflow.version}</version>
            <exclusions>
                <exclusion>
                    <artifactId>commons-lang</artifactId>
                    <groupId>commons-lang</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-rule-sql</artifactId>
            <version>${liteflow.version}</version>
        </dependency>
         <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-script-graaljs</artifactId>
            <version>${liteflow.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-script-groovy</artifactId>
            <version>${liteflow.version}</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-script-kotlin</artifactId>
            <version>${liteflow.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.jetbrains.kotlin</groupId>
                    <artifactId>kotlin-scripting-jsr223</artifactId>
                </exclusion>
            </exclusions>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-scripting-jsr223</artifactId>
            <version>${kotlin.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-script-python</artifactId>
            <version>${liteflow.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.yomahub</groupId>
            <artifactId>liteflow-script-aviator</artifactId>
            <version>${liteflow.version}</version>
            <scope>runtime</scope>
            <exclusions>
                <exclusion>
                    <artifactId>aviator</artifactId>
                    <groupId>com.googlecode.aviator</groupId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>
