-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
123 lines (101 loc) · 3.14 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2020 Arthur Daussy.
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0
which is available at https://www.eclipse.org/legal/epl-2.0/
Contributors:
Arthur Daussy - initial API and implementation.
-->
<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>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<!-- Reminder:
+ to quickly create a product : mvn package -Dmaven.test.skip=true -Dgit.dirty=ignore
+ to quickly test : mvn package -DnoReleng=true -Dgit.dirty=ignore
-->
<licenses>
<license>
<name>Eclispe Public License V2</name>
<comments>https://www.eclipse.org/legal/epl-2.0/</comments>
</license>
</licenses>
<groupId>fr.adaussy.permadeler</groupId>
<artifactId>container</artifactId>
<packaging>pom</packaging>
<version>0.5.0-SNAPSHOT</version>
<name>Permadeler container</name>
<pluginRepositories>
<pluginRepository>
<id>tycho-staged</id>
<url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1063/</url>
</pluginRepository>
</pluginRepositories>
<properties>
<tycho.version>2.0.0</tycho.version>
</properties>
<!-- Reminder:
+ to quickly create a product : mvn install -Dmaven.test.skip=true -Dgit.dirty=ignore
-->
<modules>
<module>releng/fr.adaussy.permadeler.parent</module>
<module>doc/user</module>
<!-- Plugins -->
<module>bundles/fr.adaussy.permadeler.branding</module>
<module>bundles/fr.adaussy.permadeler.common</module>
<module>bundles/fr.adaussy.permadeler.model</module>
<module>bundles/fr.adaussy.permadeler.model.design</module>
<module>bundles/fr.adaussy.permadeler.model.design.tests</module>
<module>bundles/fr.adaussy.permadeler.model.edit</module>
<module>bundles/fr.adaussy.permadeler.model.editor</module>
<module>bundles/fr.adaussy.permadeler.rcp</module>
<module>bundles/fr.adaussy.permadeler.rcp.tests</module>
<module>bundles/fr.adaussy.permadeler.test.common</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<artifacts>container,parent</artifacts>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>Releng</id>
<activation>
<property>
<name>!noReleng</name>
</property>
</activation>
<modules>
<!-- releng -->
<module>releng/fr.adaussy.permadeler.extlib</module>
<module>releng/fr.adaussy.permadeler.feature</module>
<module>releng/fr.adaussy.permadeler.product</module>
</modules>
</profile>
<profile>
<id>test-plugins</id>
<activation>
<property>
<name>!maven.test.skip</name>
</property>
</activation>
<modules>
<!-- releng -->
<!--TODO-->
</modules>
</profile>
</profiles>
</project>