-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
106 lines (94 loc) · 3.4 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
<?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>
<groupId>io.wizzie.ks.enricher</groupId>
<artifactId>enricher</artifactId>
<version>0.4.5-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<config-bootstrapper.version>0.0.4</config-bootstrapper.version>
<kafka.version>1.0.0</kafka.version>
<slf4j-api.version>1.8.0-alpha2</slf4j-api.version>
<dropwizard.version>3.1.0</dropwizard.version>
<joda.version>2.9.4</joda.version>
<metrics-library.version>0.0.2</metrics-library.version>
<slf4j.version>1.7.25</slf4j.version>
<log4j.version>1.2.17</log4j.version>
<mockito.version>1.10.19</mockito.version>
<junit.version>4.12</junit.version>
<jackson.version>2.9.1</jackson.version>
</properties>
<distributionManagement>
<repository>
<id>wizzie-release</id>
<name>Wizzie Release Repository</name>
<url>s3://wizzie-mvn-repo/release</url>
</repository>
<snapshotRepository>
<id>wizzie-snapshot</id>
<name>Wizzie Snapshot Repository</name>
<url>s3://wizzie-mvn-repo/snapshot</url>
</snapshotRepository>
</distributionManagement>
<scm>
<developerConnection>scm:git:[email protected]:wizzie-io/enricher.git</developerConnection>
<tag>enricher-0.4.0</tag>
</scm>
<repositories>
<repository>
<id>wizzie-release</id>
<name>Wizzie Release Repository</name>
<url>s3://wizzie-mvn-repo/release</url>
</repository>
<repository>
<id>wizzie-snapshot</id>
<name>Wizzie Snapshot Repository</name>
<url>s3://wizzie-mvn-repo/snapshot</url>
</repository>
</repositories>
<modules>
<module>base</module>
<module>enricher-query-compiler</module>
<module>service</module>
<module>extensions</module>
<module>model</module>
</modules>
<profiles>
<profile>
<id>dist</id>
<modules>
<!-- distribution packaging -->
<module>distribution</module>
</modules>
</profile>
<profile>
<id>docker</id>
<modules>
<!-- docker packaging -->
<module>distribution</module>
<module>docker</module>
</modules>
</profile>
</profiles>
<build>
<extensions>
<extension>
<groupId>org.springframework.build</groupId>
<artifactId>aws-maven</artifactId>
<version>5.0.0.RELEASE</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
</build>
</project>