forked from graphfoundation/ongdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
93 lines (85 loc) · 3.89 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
<?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.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.graphfoundation.ongdb.build</groupId>
<artifactId>enterprise-build</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>ONgDB - Enterprise Build</name>
<packaging>pom</packaging>
<description>Project that builds the ONgDB Enterprise distribution.</description>
<url>https://graphfoundation.org/projects/ongdb/${project.version}/${project.artifactId}</url>
<properties>
<license-text.header>headers/AGPL-3-header.txt</license-text.header>
</properties>
<scm>
<connection>scm:git:git://github.com/graphfoundation/ongdb.git</connection>
<developerConnection>scm:git:git@github.com:graphfoundation/ongdb.git</developerConnection>
<url>https://github.com/graphfoundation/ongdb</url>
</scm>
<modules>
<module>query-logging</module>
<module>com</module>
<module>cluster</module>
<module>backup</module>
<module>kernel</module>
<module>causal-clustering</module>
<module>metrics</module>
<module>neo4j-enterprise</module>
<module>server-enterprise</module>
<module>neo4j-harness-enterprise</module>
<module>management</module>
<module>security</module>
<module>auth-plugin-api</module>
<module>deferred-locks</module>
<module>ha</module>
<module>procedure-compiler-enterprise-tests</module>
<module>fulltext-addon</module>
</modules>
<profiles>
<profile>
<id>include-cypher</id>
<activation>
<property>
<name>!skipCypher</name>
</property>
</activation>
<modules>
<module>cypher</module>
</modules>
</profile>
</profiles>
<licenses>
<license>
<name>GNU Affero General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/agpl-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 AFFERO GENERAL PUBLIC LICENSE Version 3 to all
third parties and that license is included below.
</comments>
</license>
<license>
<name>GNU Affero General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/agpl-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 AFFERO 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 AFFERO GENERAL PUBLIC
LICENSE Version 3 and you may use the Software solely pursuant to the
terms of the relevant Commercial Agreement.
</comments>
</license>
</licenses>
</project>