-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
50 lines (44 loc) · 1.66 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
<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>com.trib3</groupId>
<artifactId>leakycauldron</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.trib3</groupId>
<artifactId>parent-pom</artifactId>
<version>3.1-SNAPSHOT</version>
<relativePath>parent-pom/pom.xml</relativePath>
</parent>
<name>Leaky Cauldron</name>
<description>Libraries for building kotlin services</description>
<url>https://github.com/trib3/leakycauldron</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<organization>Tribe Dynamics</organization>
<organizationUrl>https://www.tribedynamics.com</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/trib3/leakycauldron</url>
<developerConnection>scm:git:.</developerConnection>
<connection>scm:git:git://github.com/trib3/leakycauldron.git</connection>
</scm>
<modules>
<module>metrics-guice</module>
<module>build-resources</module>
<module>parent-pom</module>
<module>testing</module>
<module>config</module>
<module>json</module>
<module>db</module>
<module>server</module>
<module>graphql</module>
</modules>
</project>