forked from neo4j/ease-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
97 lines (90 loc) · 2.98 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
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.neo4j.build</groupId>
<artifactId>grandparent</artifactId>
<version>33</version>
<relativePath />
</parent>
<artifactId>ease-maven-plugin-parent</artifactId>
<groupId>org.neo4j.build.plugins</groupId>
<packaging>pom</packaging>
<version>2-SNAPSHOT</version>
<name>Ease Maven Plugin Parent</name>
<url>http://components.neo4j.org/${project.artifactId}/${project.version}</url>
<inceptionYear>2012</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<currentYear>${maven.build.timestamp}</currentYear>
<skinGroupId>org.neo4j.maven.skins</skinGroupId>
<skinArtifactId>default-skin</skinArtifactId>
<skinVersion>4</skinVersion>
<licensesVersion>7</licensesVersion>
<license-text.header>ApacheLicense-2.0-header.txt</license-text.header>
</properties>
<scm>
<connection>scm:git:git://github.com/neo4j/ease-maven-plugin.git</connection>
<developerConnection>scm:git:[email protected]:neo4j/ease-maven-plugin.git</developerConnection>
<url>https://github.com/neo4j/ease-maven-plugin</url>
</scm>
<issueManagement>
<url>https://github.com/neo4j/ease-maven-plugin</url>
</issueManagement>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<profiles>
<profile>
<id>normal-build</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>!perform</name>
</property>
</activation>
<modules>
<module>plugin</module>
</modules>
</profile>
<profile>
<id>prepare</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>prepare</name>
</property>
</activation>
<modules>
<module>plugin</module>
<module>example-freeze</module>
<module>example-freeze2</module>
<module>example-freeze3</module>
<module>example-freeze4</module>
<module>example-aggregate</module>
</modules>
</profile>
<profile>
<id>perform</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>perform</name>
</property>
</activation>
<modules>
<module>example-attach</module>
</modules>
</profile>
</profiles>
<distributionManagement>
<site>
<id>neo4j-site</id>
<url>scpexe://components.neo4j.org/home/neo/components/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
</project>