forked from tinkerpop/blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
111 lines (107 loc) · 4.21 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?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>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints</artifactId>
<version>1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://blueprints.tinkerpop.com</url>
<name>Blueprints: A Property Graph Model Interface</name>
<description>Blueprints is a property graph model interface. It provides implementations, ouplementations, test
suites, and supporting utilities.
</description>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>BSD 3-Clause</name>
<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:tinkerpop/blueprints.git</connection>
<developerConnection>scm:git:[email protected]:tinkerpop/blueprints.git</developerConnection>
<url>[email protected]:tinkerpop/blueprints.git</url>
</scm>
<contributors>
<contributor>
<name>Marko A. Rodriguez</name>
<email>[email protected]</email>
<url>http://markorodriguez.com</url>
</contributor>
<contributor>
<name>Stephen Mallette</name>
<email>[email protected]</email>
<url>http://stephen.genoprime.com</url>
</contributor>
<contributor>
<name>Joshua Shinavier</name>
<email>[email protected]</email>
<url>http://fortytwo.net</url>
</contributor>
<contributor>
<name>Luca Garulli</name>
<email>[email protected]</email>
<url>http://zion-city.blogspot.com</url>
</contributor>
<contributor>
<name>Darrick Wiebe</name>
<email>[email protected]</email>
<url>http://github.com/pangloss</url>
</contributor>
</contributors>
<modules>
<module>blueprints-core</module>
<module>blueprints-dex-graph</module>
<module>blueprints-graph-jung</module>
<module>blueprints-graph-sail</module>
<module>blueprints-neo4j-graph</module>
<module>blueprints-neo4jbatch-graph</module>
<module>blueprints-orient-graph</module>
<module>blueprints-rexster-graph</module>
<module>blueprints-sail-graph</module>
<module>blueprints-test</module>
</modules>
<properties>
<blueprints.version>1.2-SNAPSHOT</blueprints.version>
<sesame.version>2.6.0</sesame.version>
<sesametools.version>1.6</sesametools.version>
<junit.version>4.5</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<directory>${basedir}/target</directory>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-alpha-6</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
</project>