forked from lumifyio/lumify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
67 lines (60 loc) · 2.56 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.altamiracorp.lumify</groupId>
<artifactId>lumify-root</artifactId>
<version>0.2.0-SNAPSHOT</version>
</parent>
<artifactId>lumify</artifactId>
<packaging>pom</packaging>
<name>Lumify</name>
<scm>
<url>https://github.com/altamiracorp/lumify</url>
<connection>scm:git:git://github.com:altamiracorp/lumify.git</connection>
<developerConnection>scm:git:ssh://[email protected]:altamiracorp/lumify.git</developerConnection>
</scm>
<inceptionYear>2013</inceptionYear>
<organization>
<name>Altamira Corporation</name>
<url>http://www.altamiracorp.com</url>
</organization>
<url>https://github.com/altamiracorp/lumify</url>
<licenses>
<license>
<name>The Apache Software License, Veresion 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>lumify-core</module>
<module>lumify-fs-hdfs</module>
<module>lumify-model-bigtable-queue</module>
<module>lumify-model-kafka</module>
<module>lumify-storm</module>
<module>lumify-web</module>
<module>lumify-web-server</module>
<module>lumify-web-war</module>
<module>lumify-tools</module>
</modules>
<repositories>
<repository>
<id>lumify-releases</id>
<!-- The url needs to be hardcoded here because maven processes the parent pom before injecting local properties.
To test clear your local m2 repo of the lumify root pom, then maven compile. -->
<url>http://bits.lumify.io/m2/releases/</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<id>lumify-snapshots</id>
<!-- The url needs to be hardcoded here because maven processes the parent pom before injecting local properties.
To test clear your local m2 repo of the lumify root pom, then maven compile. -->
<url>http://bits.lumify.io/m2/snapshots/</url>
</repository>
</repositories>
</project>