This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
forked from eclipse/Xpect
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
75 lines (73 loc) · 2.79 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
<?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 v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
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.xpect</groupId>
<artifactId>org.xpect.root</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<target-platform>eclipse_4_6_3-xtext_2_9_2</target-platform>
<xtend-compiler-version>2.9.2</xtend-compiler-version>
</properties>
<modules>
<module>org.xpect.releng/target-platforms/${target-platform}</module>
</modules>
<profiles>
<profile>
<id>plugins</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.xpect</module>
<module>org.xpect.ui</module>
<module>org.xpect.ui.junit</module>
<module>org.xpect.xtext.lib</module>
<module>org.xpect.xtext.xbase.lib</module>
<module>org.xpect.sdk</module>
<module>org.xpect.xtext.lib.feature</module>
<module>org.xpect.xtext.xbase.lib.feature</module>
<module>org.xpect.releng/p2-repository</module>
</modules>
</profile>
<profile>
<id>xtext-examples</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.xpect.releng/xtext-examples/maven-parents/grammar-plugin</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.ide</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.ui</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel.ui</module>
</modules>
</profile>
<profile>
<id>tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.arithmetics.tests</module>
<module>org.xpect.releng/xtext-examples/org.eclipse.xtext.example.domainmodel.tests</module>
<module>org.xpect.tests</module>
<module>org.xpect.xtext.lib.tests</module>
<module>org.eclipse.xtext.example.arithmetics.xpect.tests</module>
<module>org.eclipse.xtext.example.domainmodel.xpect.tests</module>
</modules>
</profile>
</profiles>
</project>