forked from eldersantos/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
349 lines (338 loc) · 12.5 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?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.neo4j.build</groupId>
<artifactId>parent-central</artifactId>
<version>35</version>
<relativePath />
</parent>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>1.8-SNAPSHOT</version>
<name>Neo4j Community</name>
<packaging>jar</packaging>
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>
<description>A meta package containing the most used Neo4j libraries. Intended use: as a Maven dependency.</description>
<properties>
<short-name>neo4j</short-name>
<bundle.namespace>org.neo4j</bundle.namespace>
<license-text.header>GPL-3-header.txt</license-text.header>
<javadoc.skip>false</javadoc.skip>
<docs.url>http://docs.neo4j.org/chunked/${project.version}/</docs.url>
</properties>
<scm>
<url>https://github.com/neo4j/community/tree/master/neo4j</url>
</scm>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-lucene-index</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-graph-algo</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-udc</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-graph-matching</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jmx</artifactId>
<version>1.8-SNAPSHOT</version>
</dependency>
<!-- For the tests specified by this package -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>1.8-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
<comments>The software ("Software") developed and owned by Network Engine for
Objects in Lund AB (referred to in this notice as "Neo Technology") is
licensed under the GNU GENERAL PUBLIC LICENSE Version 3 to all third
parties and that license is included below.
However, if you have executed an End User Software License and Services
Agreement or an OEM Software License and Support Services Agreement, or
another commercial license agreement with Neo Technology or one of its
affiliates (each, a "Commercial Agreement"), the terms of the license in
such Commercial Agreement will supersede the GNU GENERAL PUBLIC LICENSE
Version 3 and you may use the Software solely pursuant to the terms of
the relevant Commercial Agreement.
</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-filtered-pom</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/extra-resources</outputDirectory>
<resources>
<resource>
<directory>src/main/resources/</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-dependency-sources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/javadoc-sources</outputDirectory>
<resources>
<resource>
<directory>../cypher/src/main/java/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../cypher/src/main/scala/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../graph-algo/src/main/java/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../graph-matching/src/main/java/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../jmx/src/main/java/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../kernel/src/main/java/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../kernel/target/generated-sources/</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>../lucene-index/src/main/java/</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>create-javadocs</id>
<phase>process-resources</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/site/apidocs</outputDirectory>
<sourcepath>${project.build.directory}/javadoc-sources</sourcepath>
<header>${project.name}</header>
<doctitle>${project.name} API</doctitle>
<skip>${javadoc.skip}</skip>
<windowtitle>${project.name} API</windowtitle>
<excludePackageNames>*.impl.*:org.neo4j.ext.udc:org.neo4j.kernel.ha:org.neo4j.kernel.ha.*:org.neo4j.com:org.neo4j.com.*</excludePackageNames>
<groups>
<group>
<title>Graph database</title>
<packages>org.neo4j.kernel:org.neo4j.graphdb:org.neo4j.kernel.*:org.neo4j.graphdb.*
</packages>
</group>
<group>
<title>Index</title>
<packages>org.neo4j.index:org.neo4j.index.*</packages>
</group>
<group>
<title>Graph algorithms</title>
<packages>org.neo4j.graphalgo:org.neo4j.graphalgo.*</packages>
</group>
<group>
<title>Management</title>
<packages>org.neo4j.management:org.neo4j.management.*:org.neo4j.jmx:org.neo4j.jmx.*</packages>
</group>
<group>
<title>Query language</title>
<packages>org.neo4j.cypher.javacompat:org.neo4j.cypher.javacompat.*</packages>
</group>
<group>
<title>Graph matching</title>
<packages>org.neo4j.graphmatching:org.neo4j.graphmatching.*</packages>
</group>
<group>
<title>Helpers</title>
<packages>org.neo4j.helpers:org.neo4j.helpers.*</packages>
</group>
<group>
<title>Tooling</title>
<packages>org.neo4j.tooling:org.neo4j.tooling.*</packages>
</group>
</groups>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-javadocs</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>true</attach>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<skipAssembly>${javadoc.skip}</skipAssembly>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<id>attach-descriptor</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<header>${project.name}</header>
<doctitle>${project.name} API</doctitle>
<skip>${javadoc.skip}</skip>
<windowtitle>${project.name} API</windowtitle>
<excludePackageNames>*.impl.*:org.neo4j.ext.udc:org.neo4j.kernel.ha:org.neo4j.kernel.ha.*:org.neo4j.com:org.neo4j.com.*</excludePackageNames>
<groups>
<group>
<title>Graph database</title>
<packages>org.neo4j.kernel:org.neo4j.graphdb:org.neo4j.kernel.*:org.neo4j.graphdb.*
</packages>
</group>
<group>
<title>Index</title>
<packages>org.neo4j.index:org.neo4j.index.*</packages>
</group>
<group>
<title>Graph algorithms</title>
<packages>org.neo4j.graphalgo:org.neo4j.graphalgo.*</packages>
</group>
<group>
<title>Management</title>
<packages>org.neo4j.management:org.neo4j.management.*:org.neo4j.jmx:org.neo4j.jmx.*</packages>
</group>
<group>
<title>Query language</title>
<packages>org.neo4j.cypher.javacompat:org.neo4j.cypher.javacompat.*</packages>
</group>
<group>
<title>Graph matching</title>
<packages>org.neo4j.graphmatching:org.neo4j.graphmatching.*</packages>
</group>
<group>
<title>Helpers</title>
<packages>org.neo4j.helpers:org.neo4j.helpers.*</packages>
</group>
<group>
<title>Tooling</title>
<packages>org.neo4j.tooling:org.neo4j.tooling.*</packages>
</group>
</groups>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile><!-- used for testing -->
<id>Linux-dependency-tools.jar</id>
<activation>
<os><name>Linux</name></os>
</activation>
<dependencies>
<dependency>
<groupId>com.sun.tools</groupId>
<artifactId>tools</artifactId>
<version>${sun.tools.version}</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
<optional>true</optional>
</dependency>
</dependencies>
</profile>
<profile><!-- used for testing -->
<id>Windows-dependency-tools.jar</id>
<activation>
<os><family>Windows</family></os>
</activation>
<dependencies>
<dependency>
<groupId>com.sun.tools</groupId>
<artifactId>tools</artifactId>
<version>${sun.tools.version}</version>
<scope>system</scope>
<systemPath>${java.home}\\..\\lib\\tools.jar</systemPath>
<optional>true</optional>
</dependency>
</dependencies>
</profile>
</profiles>
<distributionManagement>
<site>
<id>neo4j-site</id>
<url>scpexe://static.neo4j.org/var/www/components.neo4j.org/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
</project>