Skip to content

Commit a7d4626

Browse files
committed
starting the module
Signed-off-by: Breno Pessoa <[email protected]>
1 parent ed62a54 commit a7d4626

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed

dynamodb-driver/pom.xml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- ~ Copyright (c) 2017 Otávio Santana and others ~ All rights reserved.
3+
This program and the accompanying materials ~ are made available under the
4+
terms of the Eclipse Public License v1.0 ~ and Apache License v2.0 which
5+
accompanies this distribution. ~ The Eclipse Public License is available
6+
at http://www.eclipse.org/legal/epl-v10.html ~ and the Apache License v2.0
7+
is available at http://www.opensource.org/licenses/apache2.0.php. ~ ~ You
8+
may elect to redistribute this code under either of these licenses. ~ ~ Contributors:
9+
~ ~ Otavio Santana -->
10+
11+
<project xmlns="http://maven.apache.org/POM/4.0.0"
12+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14+
<modelVersion>4.0.0</modelVersion>
15+
<parent>
16+
<groupId>org.jnosql.diana</groupId>
17+
<artifactId>diana-driver</artifactId>
18+
<version>0.0.7-SNAPSHOT</version>
19+
</parent>
20+
21+
22+
<artifactId>dynamodb-driver</artifactId>
23+
<name>${project.groupId}:${project.artifactId}</name>
24+
<description>The Eclipse JNoSQL communication layer, Diana, implementation Redis</description>
25+
<url>http://jnosql.org/</url>
26+
27+
<licenses>
28+
<license>
29+
<name>The Apache Software License, Version 2.0</name>
30+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31+
</license>
32+
<license>
33+
<name>The Eclipse Public License v1.0</name>
34+
<url>http://www.eclipse.org/legal/epl-v10.html</url>
35+
</license>
36+
</licenses>
37+
38+
39+
<scm>
40+
<connection>scm:git:git://github.com/eclipse/jnosql-diana-driver.git</connection>
41+
<developerConnection>scm:git:ssh://github.com:eclipse/jnosql-diana-driver.git</developerConnection>
42+
<url>https://github.com/eclipse/jnosql-diana-driver</url>
43+
</scm>
44+
45+
<developers>
46+
<developer>
47+
<name>Otavio Santana</name>
48+
<email>[email protected]</email>
49+
<organization>SouJava</organization>
50+
<organizationUrl>https://about.me/otaviojava</organizationUrl>
51+
</developer>
52+
<developer>
53+
<name>JNoSQL Developers</name>
54+
<email>[email protected]</email>
55+
<organization>Eclipse JNoSQL</organization>
56+
<organizationUrl>https://dev.eclipse.org/mailman/listinfo/jnosql-dev</organizationUrl>
57+
</developer>
58+
</developers>
59+
60+
<properties>
61+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62+
</properties>
63+
<dependencies>
64+
<dependency>
65+
<groupId>org.jnosql.diana</groupId>
66+
<artifactId>diana-key-value</artifactId>
67+
<version>${project.version}</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.jnosql.diana</groupId>
71+
<artifactId>diana-driver-commons</artifactId>
72+
<version>${project.version}</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>software.amazon.awssdk</groupId>
76+
<artifactId>dynamodb</artifactId>
77+
<version>2.0.0-preview-11</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>software.amazon.awssdk</groupId>
81+
<artifactId>apache-client</artifactId>
82+
<version>2.0.0-preview-11</version>
83+
</dependency>
84+
</dependencies>
85+
86+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
<module>ravendb-driver</module>
8585
<module>redis-driver</module>
8686
<module>riak-driver</module>
87+
<module>dynamodb-driver</module>
8788
</modules>
8889

8990
<dependencies>

0 commit comments

Comments
 (0)