tiklab-flow-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-flow-server</artifactId>
<version>1.0.0.3</version>
</dependency><?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>io.tiklab</groupId>
<artifactId>tiklab-flow</artifactId>
<version>1.0.0.3</version>
</parent>
<artifactId>tiklab-flow-server</artifactId>
<name>${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-flow-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<!--common-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!--spring-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!--tiklab-->
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-toolkit-core</artifactId>
<version>${tiklab-toolkit.version}</version>
</dependency>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-rpc-annotation</artifactId>
<version>${tiklab-rpc.version}</version>
</dependency>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-dal-jpa</artifactId>
<version>${tiklab-dal.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>