forked from tinkerpop/rexster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
145 lines (142 loc) · 5.31 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?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.rexster</groupId>
<artifactId>rexster</artifactId>
<version>2.3.0-SNAPSHOT</version>
<!-- DON'T FORGET TO UPDATE rexster-server Tokens.VERSION AT RELEASE -->
<packaging>pom</packaging>
<url>http://rexster.tinkerpop.com</url>
<name>Rexster</name>
<description>
Rexster is a graph server that exposes any Blueprints graph (e.g. TinkerGraph, Neo4j, OrientDB,
DEX, and Sail RDF Stores) via REST and a binary protocol called RexPro.
</description>
<developers>
<developer>
<name>Stephen Mallette</name>
<email>spmva@genoprime.com</email>
<url>http://stephen.genoprime.com</url>
</developer>
<developer>
<name>Marko A. Rodriguez</name>
<email>marko@markorodriguez.com</email>
<url>http://markorodriguez.com</url>
</developer>
</developers>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>BSD 3-Clause</name>
<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:tinkerpop/rexster.git</connection>
<developerConnection>scm:git:git@github.com:tinkerpop/rexster.git</developerConnection>
<url>git@github.com:tinkerpop/rexster.git</url>
</scm>
<modules>
<module>rexster-server</module>
<module>rexster-kibbles</module>
<module>rexster-core</module>
<module>rexster-console</module>
<module>rexster-protocol</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<blueprints.version>2.3.0-SNAPSHOT</blueprints.version>
<gremlin.version>2.3.0-SNAPSHOT</gremlin.version>
<pipes.version>2.3.0-SNAPSHOT</pipes.version>
<frames.version>2.3.0-SNAPSHOT</frames.version>
<rexster.version>2.3.0-SNAPSHOT</rexster.version>
<jersey.version>1.17</jersey.version>
<grizzly.version>2.2.16</grizzly.version>
<junit.version>4.5</junit.version>
<srcdir>src/test/java</srcdir>
</properties>
<build>
<directory>${basedir}/target</directory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<runOrder>random</runOrder>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</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>