-
Notifications
You must be signed in to change notification settings - Fork 28
/
pom.xml
103 lines (100 loc) · 4.16 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2012-2017 TypeFox GmbH and itemis AG. All rights reserved.
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/
SPDX-License-Identifier: EPL-2.0 Contributors:
Moritz Eysholdt - Initial contribution and API -->
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.xpect</groupId>
<artifactId>org.eclipse.xpect.root</artifactId>
<version>0.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<target-platform>eclipse_2023_03-xtext_2_31_0</target-platform>
<tycho-version>4.0.7</tycho-version>
<!-- Used for promotion -->
<eclipse.repo>https://download.eclipse.org/releases/2024-06</eclipse.repo>
<justj.tools.repo>https://download.eclipse.org/justj/tools/updates/nightly/latest</justj.tools.repo>
<git.url>https://github.com/eclipse/Xpect</git.url>
<org.eclipse.storage.user>genie.xpect</org.eclipse.storage.user>
<org.eclipse.justj.p2.manager.remote>${org.eclipse.storage.user}@projects-storage.eclipse.org:/home/data/httpd/download.eclipse.org/xpect</org.eclipse.justj.p2.manager.remote>
<org.eclipse.justj.p2.manager.extra.args></org.eclipse.justj.p2.manager.extra.args>
<org.eclipse.justj.p2.manager.relative>updates</org.eclipse.justj.p2.manager.relative>
<org.eclipse.justj.p2.manager.build.url>http://www.example.com/</org.eclipse.justj.p2.manager.build.url>
<build.type>nightly</build.type>
</properties>
<build>
<plugins>
<!-- Don't publish this artifact to Maven repositories. -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>plugins</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.eclipse.xpect.releng/maven-plugin-parent</module>
</modules>
</profile>
<profile>
<id>xtext-examples</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.eclipse.xpect.releng/xtext-examples/maven-parents/grammar-plugin</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.ide</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.ui</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel.ide</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel.ui</module>
<module>org.eclipse.xtext.example.arithmetics.xpect.tests</module>
<module>org.eclipse.xtext.example.domainmodel.xpect.tests</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.tests</module>
<module>org.eclipse.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel.tests</module>
</modules>
</profile>
<profile>
<id>tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.eclipse.xpect.releng/maven-test-parent</module>
<module>org.eclipse.xpect.tests</module>
<module>org.eclipse.xpect.xtext.lib.tests</module>
</modules>
</profile>
<profile>
<id>promote</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.eclipse.xpect.releng/promotion</module>
</modules>
</profile>
</profiles>
</project>