This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pom.xml
79 lines (72 loc) · 2.26 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
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.paritytrading.parity</groupId>
<artifactId>parity-extras-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>parity-sim</artifactId>
<name>Parity Market Simulator</name>
<dependencies>
<dependency>
<groupId>com.paritytrading.foundation</groupId>
<artifactId>foundation</artifactId>
</dependency>
<dependency>
<groupId>com.paritytrading.nassau</groupId>
<artifactId>nassau-core</artifactId>
</dependency>
<dependency>
<groupId>com.paritytrading.parity</groupId>
<artifactId>parity-book</artifactId>
</dependency>
<dependency>
<groupId>com.paritytrading.parity</groupId>
<artifactId>parity-net</artifactId>
</dependency>
<dependency>
<groupId>com.paritytrading.parity</groupId>
<artifactId>parity-util</artifactId>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
</dependency>
<dependency>
<groupId>org.jvirtanen.config</groupId>
<artifactId>config-extras</artifactId>
</dependency>
<dependency>
<groupId>org.jvirtanen.util</groupId>
<artifactId>util-extras</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<outputFile>parity-sim.jar</outputFile>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.paritytrading.parity.sim.Simulator</mainClass>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
</project>