-
Notifications
You must be signed in to change notification settings - Fork 107
/
pom.xml
47 lines (40 loc) · 1.35 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
<?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>com.cloudera</groupId>
<artifactId>cdk</artifactId>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>cdk-data</module>
<module>cdk-examples</module>
<module>cdk-parent</module>
<module>cdk-tools</module>
</modules>
<name>Cloudera Development Kit</name>
<description>
The CDK is a set of libraries, tools, and docs to simplify the development of data-related systems.
</description>
<scm>
<developerConnection>scm:git:[email protected]:cloudera/cdk.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>cloudera.repo</id>
<url>https://repository.cloudera.com/artifactory/libs-release-local</url>
</repository>
</distributionManagement>
</project>