Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9f675182aab9d08cee43c14101b537cb4629b9ef (plain) (blame)
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
<!--
 * Copyright (c) 2011, 2020 PetalsLink, CEA LIST, Artal
 *  All rights reserved. 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
 *  http://www.eclipse.org/legal/epl-v20.html
 *  
 *   Contributors:
 *      Mickael istria (PetalsLink)
 *      Aurélien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
-->
<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.eclipse.papyrus</groupId>
	<artifactId>org.eclipse.papyrus.gmf-tooling</artifactId>
	<packaging>pom</packaging>

	<parent>
		<groupId>org.eclipse.papyrus</groupId>
		<artifactId>org.eclipse.papyrus-toolsmiths</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>

	<modules>
		<!-- plugins -->
		<module>org.eclipse.papyrus.gmf.graphdef</module>
		<module>org.eclipse.papyrus.gmf.graphdef.codegen</module>
		<module>org.eclipse.papyrus.gmf.graphdef.codegen.ui</module>
		<module>org.eclipse.papyrus.gmf.graphdef.edit</module>
		<module>org.eclipse.papyrus.gmf.tooldef</module>
		<module>org.eclipse.papyrus.gmf.tooldef.edit</module>
		<module>org.eclipse.papyrus.gmf.map</module>
		<module>org.eclipse.papyrus.gmf.map.edit</module>
		<module>org.eclipse.papyrus.gmf.bridge</module>
		<module>org.eclipse.papyrus.gmf.bridge.trace</module>
		<module>org.eclipse.papyrus.gmf.bridge.ui</module>
		<module>org.eclipse.papyrus.gmf.bridge.ui.dashboard</module>
		<module>org.eclipse.papyrus.gmf.codegen</module>
		<module>org.eclipse.papyrus.gmf.codegen.edit</module>
		<module>org.eclipse.papyrus.gmf.codegen.ui</module>
	    <module>org.eclipse.papyrus.gmf.codegen.xtend</module>
	    <module>org.eclipse.papyrus.gmf.codegen.xtend.ui</module>
		<module>org.eclipse.papyrus.gmf.common</module>
		<module>org.eclipse.papyrus.gmf.validate</module>
		<module>org.eclipse.papyrus.gmf.xpand</module>
		<module>org.eclipse.papyrus.gmf.xpand.qvtlibrary</module>

	</modules>

</project>

Back to the top