forked from neo4j/neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
194 lines (186 loc) · 6.58 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
<?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</artifactId>
<version>3.0.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j.build</groupId>
<artifactId>community-build</artifactId>
<version>3.0.2-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>
<docs-plugin.skip>true</docs-plugin.skip>
<componentversion.skip>true</componentversion.skip>
</properties>
<scm>
<connection>scm:git:git://github.com/neo4j/neo4j.git</connection>
<developerConnection>scm:git:git@github.com:neo4j/neo4j.git</developerConnection>
<url>https://github.com/neo4j/neo4j</url>
</scm>
<modules>
<module>common</module>
<module>resource</module>
<module>collections</module>
<module>primitive-collections</module>
<module>graphdb-api</module>
<module>unsafe</module>
<module>io</module>
<module>csv</module>
<module>logging</module>
<module>security</module>
<module>neo4j-slf4j</module>
<module>codegen</module>
<module>kernel</module>
<module>jmx</module>
<module>udc</module>
<module>monitor-logging</module>
<module>lucene-index</module>
<module>lucene-index-upgrade</module>
<module>graph-algo</module>
<module>graph-matching</module>
<module>neo4j</module>
<module>neo4j-community</module>
<module>shell</module>
<module>import-tool</module>
<module>server-api</module>
<module>graphviz</module>
<module>bolt</module>
<module>server</module>
<module>server-plugin-test</module>
<module>consistency-check</module>
<module>neo4j-harness</module>
<module>licensecheck-config</module>
<module>dbms</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>
<profiles>
<profile>
<id>include-cypher</id>
<activation>
<property>
<name>!skipCypher</name>
</property>
</activation>
<modules>
<module>cypher</module>
</modules>
</profile>
<profile>
<id>freeze</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>freeze</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.neo4j.build.plugins</groupId>
<artifactId>ease-maven-plugin</artifactId>
<executions>
<execution>
<id>aggregate-artifacts</id>
<goals>
<goal>aggregate</goal>
</goals>
<configuration>
<includes>
<include>org.neo4j:*</include>
<include>org.neo4j.app:*</include>
<include>org.neo4j.examples:*</include>
<include>org.neo4j.doc:*</include>
<include>org.neo4j.test:*</include>
<include>org.neo4j.build:licensecheck-config:*</include>
</includes>
<excludes>
<exclude>org.neo4j:neo4j-cypher-frontend-2.3</exclude>
<exclude>org.neo4j:neo4j-cypher-compiler-2.3</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>freeze-artifacts</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-community</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-graphviz</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-shell</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-import-tool</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j.app</groupId>
<artifactId>neo4j-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j.build</groupId>
<artifactId>licensecheck-config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>cypher-parent</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>