-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
88 lines (83 loc) · 2.92 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ca.rdmss</groupId>
<artifactId>fast-flow</artifactId>
<packaging>jar</packaging>
<version>1.4.0</version>
<name>Fast Flow Engine</name>
<description>Lock free multi threaded lightweight workflow engine for parallel and sequential tasks</description>
<url>https://github.com/serhioms/FastFlow</url>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.3.6</version>
<scope>test</scope>
</dependency>
<!-- <dependency> -->
<!-- <groupId>ca.rdmss</groupId> -->
<!-- <artifactId>multi-test</artifactId> -->
<!-- <version>1.4.0</version> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>ca.rdmss</groupId> -->
<!-- <artifactId>disruptor-flow</artifactId> -->
<!-- <version>1.4.0</version> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>ca.rdmss</groupId> -->
<!-- <artifactId>fast-threadpool</artifactId> -->
<!-- <version>1.4.0</version> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->
</dependencies>
<build>
<finalName>fast-flow</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<testExcludes>
<testExclude>demo/Hundred*</testExclude>
<testExclude>dflow/**</testExclude>
<testExclude>fastflow/**</testExclude>
<testExclude>higherorder/**</testExclude>
<testExclude>perfomance/**</testExclude>
<testExclude>test/**</testExclude>
</testExcludes>
<!-- <excludes> -->
<!-- <exclude></exclude> -->
<!-- </excludes> -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
</project>