pom.xml 1.4 KB
Newer Older
1 2 3 4 5
<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>

6 7
	<name>Flowable 5 Compatibility - Test</name>
	<artifactId>flowable5-compatibility-test</artifactId>
8 9

	<parent>
10 11
		<groupId>org.flowable</groupId>
		<artifactId>flowable-root</artifactId>
12
		<relativePath>../..</relativePath>
T
Tijs Rademakers 已提交
13
		<version>6.3.0</version>
14 15 16 17
	</parent>

	<dependencies>
		<dependency>
18 19
			<groupId>org.flowable</groupId>
			<artifactId>flowable-engine</artifactId>
20 21 22 23 24 25 26 27 28 29 30 31
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
32
			<scope>test</scope>
33 34
		</dependency>
		<dependency>
35 36
			<groupId>org.flowable</groupId>
			<artifactId>flowable5-compatibility</artifactId>
T
Tijs Rademakers 已提交
37
			<version>6.3.0</version>
38 39 40 41 42 43 44 45 46 47 48 49 50 51
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>