-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
134 lines (120 loc) · 3.77 KB
/
pom.xml
File metadata and controls
134 lines (120 loc) · 3.77 KB
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
<?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>
<groupId>org.mypsycho.emf.modit</groupId>
<artifactId>container</artifactId>
<packaging>pom</packaging>
<version>1.3.2-SNAPSHOT</version>
<name>Mod-it Container</name>
<properties>
<tycho.version>2.7.5</tycho.version>
</properties>
<!--
Reminder:
* Changing version
mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=0.3.1-SNAPSHOT -Dgit.dirty=ignore
-->
<licenses>
<license>
<name>Eclipse Public License v2.0</name>
<comments><![CDATA[
Copyright (c) 2023 Nicolas Peransin.
This program and the accompanying materials are made available
under the terms of the Eclipse Public License v2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
]]></comments>
</license>
</licenses>
<modules>
<!-- Types of project -->
<module>parent</module>
<!-- Regular components -->
<module>plugins/modit</module>
<module>plugins/modit.sirius</module>
<module>plugins/modit.sirius.ui</module>
<module>plugins/modit.edit</module><!-- Compile only -->
<module>plugins/modit.eef</module><!-- Compile only -->
</modules>
<profiles>
<profile>
<id>tests-modules</id>
<activation>
<property>
<name>maven.test.skip</name>
<value>!true</value>
</property>
</activation>
<modules>
<!-- xcore + xtend is not ready
<module>tests/ObeoXtdDemo</module>
-->
<module>tests/dummy-model</module>
<module>tests/sample-tests</module>
<module>tests/modit-tests</module>
<module>tests/modit-sirius-tests</module>
<!-- EMF Genmodel doesn't handle a project not name as the folder -->
<module>tests/org.mypsycho.emf.modit.dummy-model.edit</module>
<module>tests/dummy-model.design</module>
<module>tests/dummy-model.design.tests</module>
</modules>
</profile>
<profile>
<id>releng-modules</id>
<activation>
<property>
<name>tycho.releng.skip</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>releng/modit-feature</module>
<module>releng/modit-sirius-feature</module>
<module>releng/update-site</module>
<module>releng/publish</module>
</modules>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<!-- List of ArtifactIds reachable by this pom. -->
<!-- Only the ones without project.parent. -->
<artifacts>container,parent,publish</artifacts>
</configuration>
</plugin>
<plugin>
<!-- Configuration to update version -->
<!-- Command reminder:
mvn -B gitflow:release -DpushRemote=false
option: -DversionDigitToIncrement=0 'increase major
option: -DversionDigitToIncrement=1 'increase minor
option: -DversionDigitToIncrement=2 'increase patch
option: (no versionDigitToIncrement) 'Last part increment
option: -DskipTag=true 'when tag cannot be pushed
-->
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<tychoBuild>true</tychoBuild>
<gitFlowConfig>
<productionBranch>master</productionBranch>
<developmentBranch>master</developmentBranch>
</gitFlowConfig>
<releaseRebase>true</releaseRebase>
<origin>origin</origin>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>