-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
102 lines (93 loc) · 3.49 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
<?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>com.torodb</groupId>
<artifactId>parent-pom</artifactId>
<version>1.0.1-SNAPSHOT</version>
</parent>
<groupId>com.torodb</groupId>
<artifactId>akka-chronicle-queue</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Akka Stream: Chronicle Queue integration</name>
<description>
Transforms Chronicle Queue into an Akka source, sink or buffer flow.
</description>
<organization>
<name>8Kdata Technology</name>
<url>www.8kdata.com</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:torodb/mongowp.git</connection>
<developerConnection>scm:git:git@github.com:torodb/mongowp.git</developerConnection>
<url>git@github.com:torodb/mongowp.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/torodb/mongowp/issues</url>
</issueManagement>
<properties>
<license.header.license>apache20</license.header.license>
<license.header.project.name>Chronicle Queue Akka integration</license.header.project.name>
<license.header.project.inceptionYear>2017</license.header.project.inceptionYear>
</properties>
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream_2.12</artifactId>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>chronicle-queue</artifactId>
<version>4.5.27</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.torodb.testing</groupId>
<artifactId>core-junit5</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-stream-testkit_2.12</artifactId>
<version>${akka.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>