forked from neo4j/neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
116 lines (106 loc) · 3.94 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
<?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>2.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j.build</groupId>
<artifactId>advanced-build</artifactId>
<version>2.0-SNAPSHOT</version>
<name>Neo4j Advanced Build</name>
<packaging>pom</packaging>
<description>Project that builds the Neo4j Advanced distribution.</description>
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>
<properties>
<short-name>advanced-build</short-name>
<docs-plugin.skip>true</docs-plugin.skip>
<maven.site.skip>true</maven.site.skip>
<maven.site.deploy.skip>true</maven.site.deploy.skip>
</properties>
<scm>
<connection>scm:git:git://github.com/neo4j/neo4j.git</connection>
<developerConnection>scm:git:[email protected]:neo4j/neo4j.git</developerConnection>
<url>https://github.com/neo4j/neo4j/tree/master/advanced</url>
</scm>
<modules>
<module>management</module>
<module>neo4j-advanced</module>
<module>server-advanced</module>
</modules>
<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 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>
<distributionManagement>
<site>
<id>neo4j-site</id>
<url>scpexe://static.neo4j.org/data/www/doc/components.neo4j.org/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
<profiles>
<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>
</includes>
</configuration>
</execution>
<execution>
<id>freeze-artifacts</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-advanced</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j.app</groupId>
<artifactId>neo4j-server-advanced</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>