-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
88 lines (80 loc) · 2.64 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.metaloom.loom.test</groupId>
<artifactId>loom-integration-test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Loom :: Integration Test</name>
<parent>
<groupId>io.metaloom.loom</groupId>
<artifactId>maven-loom-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dagger.version>2.45</dagger.version>
<loom.nexus.version>1.0.0-SNAPSHOT</loom.nexus.version>
<loom.cortex.version>1.0.0-SNAPSHOT</loom.cortex.version>
<loom.client.version>1.0.0-SNAPSHOT</loom.client.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.metaloom.loom</groupId>
<artifactId>loom-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.metaloom.loom.container</groupId>
<artifactId>loom-container-server</artifactId>
<version>${loom.nexus.version}</version>
</dependency>
<!--
<dependency>
<groupId>io.metaloom.loom.client</groupId>
<artifactId>loom-client-grpc</artifactId>
<version>${loom.client.version}</version>
</dependency>
-->
<dependency>
<groupId>io.metaloom.loom.client</groupId>
<artifactId>loom-client-rest</artifactId>
<version>${loom.client.version}</version>
</dependency>
<dependency>
<groupId>io.metaloom.cortex</groupId>
<artifactId>cortex-cli</artifactId>
<version>${loom.cortex.version}</version>
</dependency>
<!--Test-->
<dependency>
<groupId>io.metaloom.loom.test</groupId>
<artifactId>loom-test-env</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>21</release>
<annotationProcessorPaths>
<path>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
<version>${dagger.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>