98 lines
3.3 KiB
XML
98 lines
3.3 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-starter</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
|
|
<name>easyflow-starter</name>
|
|
<artifactId>easyflow-starter-all</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-api-admin</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-api-usercenter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-api-public</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-module-job</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-module-ai</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>slf4j-reload4j</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-module-auth</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.easyflow</groupId>
|
|
<artifactId>easyflow-module-autoconfig</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<configuration>
|
|
<fork>true</fork>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|