-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
41 lines (32 loc) · 1.03 KB
/
Copy pathpom.xml
File metadata and controls
41 lines (32 loc) · 1.03 KB
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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>foundation.identity.keri</groupId>
<artifactId>root</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>controller</artifactId>
<dependencies>
<dependency>
<groupId>foundation.identity.keri</groupId>
<artifactId>log</artifactId>
</dependency>
<dependency>
<groupId>foundation.identity.keri</groupId>
<artifactId>event-storage-in-memory</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>foundation.identity.keri</groupId>
<artifactId>key-storage-in-memory</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>