forked from eldersantos/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
79 lines (69 loc) · 2.87 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
<?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.neo4j</groupId>
<artifactId>parent-central</artifactId>
<version>22</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j.build</groupId>
<artifactId>community-build</artifactId>
<version>1.5-SNAPSHOT</version>
<name>Neo4j Community Build</name>
<packaging>pom</packaging>
<description>Project that builds the Neo4j Community distribution.</description>
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>
<properties>
<short-name>community-build</short-name>
<license-text.header>GPL-3-header.txt</license-text.header>
</properties>
<scm>
<connection>scm:git:git://github.com/neo4j/community.git</connection>
<developerConnection>scm:git:git@github.com:neo4j/community.git</developerConnection>
<url>https://github.com/neo4j/community</url>
</scm>
<modules>
<module>kernel</module>
<module>jmx</module>
<module>udc</module>
<module>lucene-index</module>
<module>graph-algo</module>
<module>graph-matching</module>
<module>cypher</module>
<module>neo4j</module>
<module>neo4j-community</module>
<module>shell</module>
<module>embedded-examples</module>
<module>server-api</module>
<module>server</module>
<module>server-examples</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 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>
<issueManagement>
<system>Trac</system>
<url>https://trac.neo4j.org/query?status=assigned&status=new&status=reopened&component=${short-name}</url>
</issueManagement>
<distributionManagement>
<site>
<id>neo4j-site</id>
<url>scpexe://components.neo4j.org/home/neo/components/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
</project>