-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
168 lines (157 loc) · 6.36 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>exchange.core2</groupId>
<artifactId>exchange-core</artifactId>
<version>0.5.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>High performance market exchange core.</description>
<url>https://core2.exchange</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/mzheravin/exchange-core.git</url>
<connection>scm:git:git://github.com/mzheravin/exchange-core.git</connection>
<developerConnection>scm:git:ssh://git@github.com:mzheravin/exchange-core.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/mzheravin/exchange-core/issues</url>
</issueManagement>
<developers>
<developer>
<name>Maksim Zheravin</name>
<email>mzheravin@core2.exchange</email>
<organization>Core2</organization>
<organizationUrl>https://github.com/mzheravin</organizationUrl>
</developer>
</developers>
<properties>
<skip.it>false</skip.it>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<guava.version>28.2-jre</guava.version>
<commons-math3.version>3.6.1</commons-math3.version>
<commons-lang3.version>3.10</commons-lang3.version>
<lmax.com.lmax.disruptor.version>3.4.2</lmax.com.lmax.disruptor.version>
<openhft.affinity.version>3.2.2</openhft.affinity.version>
<openhft.chronicle.wire.version>2.19.1</openhft.chronicle.wire.version>
<eclipse.collections.version>10.2.0</eclipse.collections.version>
<hdr.histogram.version>2.1.12</hdr.histogram.version>
<cucumber.version>5.4.2</cucumber.version>
<lz4.java>1.7.1</lz4.java>
<agrona.version>1.4.1</agrona.version>
<lombok.version>1.18.12</lombok.version>
<jmh.version>1.23</jmh.version>
<junit.version>4.13.1</junit.version>
<mockito.version>3.3.3</mockito.version>
<hamcrest.version>1.3</hamcrest.version>
<delombok.output>target/delombok</delombok.output>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.quickfixj/quickfixj-messages-all -->
<dependency>
<groupId>org.quickfixj</groupId>
<artifactId>quickfixj-messages-all</artifactId>
<version>2.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.quickfixj/quickfixj-core -->
<dependency>
<groupId>org.quickfixj</groupId>
<artifactId>quickfixj-core</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>exchange.core2</groupId>
<artifactId>collections</artifactId>
<version>0.5.1</version>
</dependency>
<!-- LMAX Disruptor -->
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${lmax.com.lmax.disruptor.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- OpenHFT -->
<dependency>
<groupId>net.openhft</groupId>
<artifactId>affinity</artifactId>
<version>${openhft.affinity.version}</version>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-wire</artifactId>
<version>${openhft.chronicle.wire.version}</version>
</dependency>
<!-- Real Logic Agrona -->
<dependency>
<groupId>org.agrona</groupId>
<artifactId>agrona</artifactId>
<version>${agrona.version}</version>
</dependency>
<!-- Eclipse (Goldman Sachs) collections -->
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections-api</artifactId>
<version>${eclipse.collections.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>eclipse-collections</artifactId>
<version>${eclipse.collections.version}</version>
</dependency>
<!-- lz4-java -->
<dependency>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
<version>${lz4.java}</version>
</dependency>
<!-- HDR Histogram -->
<dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
<version>${hdr.histogram.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>