-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
82 lines (73 loc) · 2.63 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
<?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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.apigee.tutorial</groupId>
<artifactId>strata-west-2012</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Building Applications with Apache Cassandra</name>
<description>The code examples from the tutorial session: Building Applications with Apache Cassandra (http://strataconf.com/strata2012/public/schedule/detail/22369) presented at the O'Reilly Strata Conference on February 28th, 2012.</description>
<url>https://github.com/zznate/strata-west-2012</url>
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/zznate/strata-west-2012/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zznate</id>
<name>Nate McCall</name>
<roles>
<role>packager</role>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/zznate/strata-west-2012/</connection>
<developerConnection>scm:githttps://github.com/zznate/strata-west-2012/</developerConnection>
<url>https://github.com/zznate/strata-west-2012</url>
</scm>
<issueManagement>
<system>github.com</system>
<url>https://github.com/zznate/strata-west-2012/issues/list</url>
</issueManagement>
<properties>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>api-usage</module>
<module>common</module>
<module>storage-model</module>
<module>webapp</module>
<module>ez-client</module>
</modules>
<dependencies>
<dependency>
<groupId>me.prettyprint</groupId>
<artifactId>hector-core</artifactId>
<version>1.0-3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
</dependency>
</dependencies>
</project>