-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpom.xml
107 lines (100 loc) · 4.23 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
<?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">
<parent>
<groupId>org.graphfoundation.ongdb</groupId>
<artifactId>parent</artifactId>
<version>1.0.6-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.graphfoundation.ongdb.build</groupId>
<artifactId>community-build</artifactId>
<version>1.0.6-SNAPSHOT</version>
<name>ONgDB - Community Build</name>
<packaging>pom</packaging>
<description>Project that builds the ONgDB Community distribution.</description>
<url>https://graphfoundation.org/projects/ongdb/${project.version}/${project.artifactId}</url>
<properties>
<license-text.header>headers/GPL-3-header.txt</license-text.header>
</properties>
<modules>
<module>common</module>
<module>configuration</module>
<module>resource</module>
<module>collections</module>
<module>primitive-collections</module>
<module>graphdb-api</module>
<module>procedure-api</module>
<module>unsafe</module>
<module>io</module>
<module>kernel-api</module>
<module>csv</module>
<module>logging</module>
<module>security</module>
<module>neo4j-slf4j</module>
<module>codegen</module>
<module>index</module>
<module>kernel</module>
<module>jmx</module>
<module>udc</module>
<module>lucene-index</module>
<module>lucene-index-upgrade</module>
<module>graph-algo</module>
<module>neo4j</module>
<module>neo4j-community</module>
<module>shell</module>
<module>import-tool</module>
<module>server-api</module>
<module>bolt</module>
<module>server</module>
<module>server-plugin-test</module>
<module>consistency-check</module>
<module>neo4j-harness</module>
<module>dbms</module>
<module>command-line</module>
<module>procedure-compiler</module>
<module>values</module>
<module>ssl</module>
<module>spatial-index</module>
<module>push-to-cloud</module>
</modules>
<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 Graph Foundation, Inc.
(referred to in this notice as "Graph Foundation") is licensed under the
GNU GENERAL PUBLIC LICENSE Version 3 to all third parties and that license is included below.
</comments>
</license>
<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 Neo4j Sweden AB (referred to in this notice as "Neo4j") 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 Neo4j 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>
<profiles>
<profile>
<id>include-cypher</id>
<activation>
<property>
<name>!skipCypher</name>
</property>
</activation>
<modules>
<module>cypher</module>
</modules>
</profile>
</profiles>
</project>