diff options
author | mistria | 2011-07-26 16:01:27 +0000 |
---|---|---|
committer | mistria | 2011-07-26 16:01:27 +0000 |
commit | c23dfa71a96178fa270b864698aa86fce1d5d528 (patch) | |
tree | 127ec8995cdd47ad88f23e2f1700b09eb3810710 | |
parent | e43ba62b97bbda6cda1a3303550a32421eb7393d (diff) | |
download | org.eclipse.gmf-tooling-c23dfa71a96178fa270b864698aa86fce1d5d528.tar.gz org.eclipse.gmf-tooling-c23dfa71a96178fa270b864698aa86fce1d5d528.tar.xz org.eclipse.gmf-tooling-c23dfa71a96178fa270b864698aa86fce1d5d528.zip |
333270: Improved pom organization and artifact naming
96 files changed, 1571 insertions, 281 deletions
diff --git a/doc/org.eclipse.gmf.doc.ui/pom.xml b/doc/org.eclipse.gmf.doc.ui/pom.xml index 3e5c1b3df..52b93c792 100644 --- a/doc/org.eclipse.gmf.doc.ui/pom.xml +++ b/doc/org.eclipse.gmf.doc.ui/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.doc</groupId> <artifactId>org.eclipse.gmf.doc.ui</artifactId> <version>1.3.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>doc</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/doc/org.eclipse.gmf.doc/pom.xml b/doc/org.eclipse.gmf.doc/pom.xml index db2c5efb2..b4e5f1446 100644 --- a/doc/org.eclipse.gmf.doc/pom.xml +++ b/doc/org.eclipse.gmf.doc/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.doc</groupId> <artifactId>org.eclipse.gmf.doc</artifactId> <version>1.3.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>doc</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/doc/pom.xml b/doc/pom.xml new file mode 100755 index 000000000..1dd1d40d3 --- /dev/null +++ b/doc/pom.xml @@ -0,0 +1,31 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>doc</artifactId> + <packaging>pom</packaging> + <version>2.4.0-SNAPSHOT</version> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <modules> + <module>org.eclipse.gmf.doc</module> + <module>org.eclipse.gmf.doc.ui</module> + </modules> + +</project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.ecore.editor/pom.xml b/examples/org.eclipse.gmf.ecore.editor/pom.xml index e0bf2ac2e..1bea2b741 100644 --- a/examples/org.eclipse.gmf.ecore.editor/pom.xml +++ b/examples/org.eclipse.gmf.ecore.editor/pom.xml @@ -1,17 +1,27 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.ecore.editor</artifactId> <version>2.2.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> - + <build> <plugins> <plugin> @@ -29,5 +39,5 @@ </plugin> </plugins> </build> - + </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.design2d.notation/pom.xml b/examples/org.eclipse.gmf.examples.design2d.notation/pom.xml index 3a0d030de..49f07acd8 100644 --- a/examples/org.eclipse.gmf.examples.design2d.notation/pom.xml +++ b/examples/org.eclipse.gmf.examples.design2d.notation/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.design2d.notation</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.design2d/pom.xml b/examples/org.eclipse.gmf.examples.design2d/pom.xml index 6d86c1650..cfd9083b0 100644 --- a/examples/org.eclipse.gmf.examples.design2d/pom.xml +++ b/examples/org.eclipse.gmf.examples.design2d/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.design2d</artifactId> <version>2.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.diagram.custom/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.diagram.custom/pom.xml index fa1a4e446..4da0fad34 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.diagram.custom/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.diagram.custom/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.diagram.custom</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.diagram/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.diagram/pom.xml index f225e6dd7..0d9d9be24 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.diagram/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.diagram/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.diagram</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram.custom/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram.custom/pom.xml index a38a6a7a4..64e2fc741 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram.custom/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram.custom/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library.diagram.custom</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram/pom.xml index 2c1a4cc44..e82e2008e 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library.diagram/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library.diagram</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library.edit/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library.edit/pom.xml index c00a794a3..14c28c437 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library.edit/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library.edit/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library.edit</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library.editor/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library.editor/pom.xml index df1e59381..c9d4bd361 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library.editor/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library.editor/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library.editor</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library.notation/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library.notation/pom.xml index c07332ed0..664aeb57a 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library.notation/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library.notation/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library.notation</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon.library/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon.library/pom.xml index fc044a25c..1fb1f6bc6 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon.library/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon.library/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon.library</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.eclipsecon/pom.xml b/examples/org.eclipse.gmf.examples.eclipsecon/pom.xml index cfabd1b0d..2f578eea5 100644 --- a/examples/org.eclipse.gmf.examples.eclipsecon/pom.xml +++ b/examples/org.eclipse.gmf.examples.eclipsecon/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.eclipsecon</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.diagram.custom/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.diagram.custom/pom.xml index 906ec9691..657d2811e 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.diagram.custom/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.diagram.custom/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.diagram.custom</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.diagram.pure/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.diagram.pure/pom.xml index d8ec1aff0..c1ebb7404 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.diagram.pure/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.diagram.pure/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.diagram.pure</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.diagram/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.diagram/pom.xml index bd488e70d..6f7a68d55 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.diagram/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.diagram/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.diagram</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.edit/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.edit/pom.xml index 55823ac08..805a43edd 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.edit/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.edit/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.edit</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.lite.edit/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.lite.edit/pom.xml index 86a4645bf..767a598a3 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.lite.edit/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.lite.edit/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.lite.edit</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.lite.rcp/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.lite.rcp/pom.xml index bcf334545..db1cfd56f 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.lite.rcp/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.lite.rcp/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.lite.rcp</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.lite/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.lite/pom.xml index 20e3f5abb..50c4c54ff 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.lite/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.lite/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.lite</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap.rcp.diagram/pom.xml b/examples/org.eclipse.gmf.examples.mindmap.rcp.diagram/pom.xml index 86de57a31..4c8e57691 100644 --- a/examples/org.eclipse.gmf.examples.mindmap.rcp.diagram/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap.rcp.diagram/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap.rcp.diagram</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.mindmap/pom.xml b/examples/org.eclipse.gmf.examples.mindmap/pom.xml index dd62a9ba2..4128b6bb1 100644 --- a/examples/org.eclipse.gmf.examples.mindmap/pom.xml +++ b/examples/org.eclipse.gmf.examples.mindmap/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.mindmap</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.edit/pom.xml b/examples/org.eclipse.gmf.examples.taipan.edit/pom.xml index 27ff418ea..ac501734b 100644 --- a/examples/org.eclipse.gmf.examples.taipan.edit/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.edit/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.edit</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.editor.rcp/pom.xml b/examples/org.eclipse.gmf.examples.taipan.editor.rcp/pom.xml index 825029775..70f70597b 100644 --- a/examples/org.eclipse.gmf.examples.taipan.editor.rcp/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.editor.rcp/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.editor.rcp</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.editor/pom.xml b/examples/org.eclipse.gmf.examples.taipan.editor/pom.xml index 18061c2aa..214639f14 100644 --- a/examples/org.eclipse.gmf.examples.taipan.editor/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.editor/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.editor</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.gmf.editor.rcp/pom.xml b/examples/org.eclipse.gmf.examples.taipan.gmf.editor.rcp/pom.xml index aecb3fe5f..0793b2554 100644 --- a/examples/org.eclipse.gmf.examples.taipan.gmf.editor.rcp/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.gmf.editor.rcp/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.gmf.editor.rcp</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.gmf.editor/pom.xml b/examples/org.eclipse.gmf.examples.taipan.gmf.editor/pom.xml index f82001051..5dcbf6400 100644 --- a/examples/org.eclipse.gmf.examples.taipan.gmf.editor/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.gmf.editor/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.gmf.editor</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.port.diagram.rcp/pom.xml b/examples/org.eclipse.gmf.examples.taipan.port.diagram.rcp/pom.xml index 1a44ac977..bf75a2bb2 100644 --- a/examples/org.eclipse.gmf.examples.taipan.port.diagram.rcp/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.port.diagram.rcp/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.port.diagram.rcp</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.port.diagram/pom.xml b/examples/org.eclipse.gmf.examples.taipan.port.diagram/pom.xml index b4d4d75fa..e91a07be3 100644 --- a/examples/org.eclipse.gmf.examples.taipan.port.diagram/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.port.diagram/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.port.diagram</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan.ui/pom.xml b/examples/org.eclipse.gmf.examples.taipan.ui/pom.xml index ba8d74a6d..199bc36c1 100644 --- a/examples/org.eclipse.gmf.examples.taipan.ui/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan.ui/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan.ui</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.taipan/pom.xml b/examples/org.eclipse.gmf.examples.taipan/pom.xml index c98f59ead..dcfbfd1c2 100644 --- a/examples/org.eclipse.gmf.examples.taipan/pom.xml +++ b/examples/org.eclipse.gmf.examples.taipan/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.taipan</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples.ui.pde/pom.xml b/examples/org.eclipse.gmf.examples.ui.pde/pom.xml index 42f60e55c..61b870d67 100644 --- a/examples/org.eclipse.gmf.examples.ui.pde/pom.xml +++ b/examples/org.eclipse.gmf.examples.ui.pde/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples.ui.pde</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.examples/pom.xml b/examples/org.eclipse.gmf.examples/pom.xml index e20fc54b1..baf37f4c3 100644 --- a/examples/org.eclipse.gmf.examples/pom.xml +++ b/examples/org.eclipse.gmf.examples/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.examples</artifactId> <version>1.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.sketch.edit/pom.xml b/examples/org.eclipse.gmf.sketch.edit/pom.xml index 658111a40..97683d924 100644 --- a/examples/org.eclipse.gmf.sketch.edit/pom.xml +++ b/examples/org.eclipse.gmf.sketch.edit/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.sketch.edit</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.sketch.editor/pom.xml b/examples/org.eclipse.gmf.sketch.editor/pom.xml index e03b8c39e..0cbafdefd 100644 --- a/examples/org.eclipse.gmf.sketch.editor/pom.xml +++ b/examples/org.eclipse.gmf.sketch.editor/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.sketch.editor</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.sketch.transformer/pom.xml b/examples/org.eclipse.gmf.sketch.transformer/pom.xml index 1ae2a98e1..e7d40ebb0 100644 --- a/examples/org.eclipse.gmf.sketch.transformer/pom.xml +++ b/examples/org.eclipse.gmf.sketch.transformer/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.sketch.transformer</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/org.eclipse.gmf.sketch/pom.xml b/examples/org.eclipse.gmf.sketch/pom.xml index 210053cd6..4f91b33e2 100644 --- a/examples/org.eclipse.gmf.sketch/pom.xml +++ b/examples/org.eclipse.gmf.sketch/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.examples</groupId> <artifactId>org.eclipse.gmf.sketch</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>examples</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/examples/pom.xml b/examples/pom.xml new file mode 100755 index 000000000..600cfb48a --- /dev/null +++ b/examples/pom.xml @@ -0,0 +1,63 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>examples</artifactId> + <packaging>pom</packaging> + <version>2.4.0-SNAPSHOT</version> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <modules> + <module>org.eclipse.gmf.examples</module> + <module>org.eclipse.gmf.examples.design2d</module> + <module>org.eclipse.gmf.examples.design2d.notation</module> + <!-- module>org.eclipse.gmf.examples.eclipsecon</module> + <module>org.eclipse.gmf.examples.eclipsecon.diagram</module> + <module>org.eclipse.gmf.examples.eclipsecon.diagram.custom</module> + <module>org.eclipse.gmf.examples.eclipsecon.library</module> + <module>org.eclipse.gmf.examples.eclipsecon.library.diagram</module> + <module>org.eclipse.gmf.examples.eclipsecon.library.diagram.custom</module> + <module>org.eclipse.gmf.examples.eclipsecon.library.edit</module> + <module>org.eclipse.gmf.examples.eclipsecon.library.editor</module> + <module>org.eclipse.gmf.examples.eclipsecon.library.notation</module--> + <!-- module>org.eclipse.gmf.examples.mindmap</module> + <module>org.eclipse.gmf.examples.mindmap.edit</module> + <module>org.eclipse.gmf.examples.mindmap.diagram</module> + <module>org.eclipse.gmf.examples.mindmap.diagram.pure</module> + <module>org.eclipse.gmf.examples.mindmap.diagram.custom</module> + <module>org.eclipse.gmf.examples.mindmap.lite</module> + <module>org.eclipse.gmf.examples.mindmap.lite.edit</module> + <module>org.eclipse.gmf.examples.mindmap.lite.rcp</module> + <module>org.eclipse.gmf.examples.mindmap.rcp.diagram</module--> + <!-- module>org.eclipse.gmf.examples.taipan</module> + <module>org.eclipse.gmf.examples.taipan.edit</module> + <module>org.eclipse.gmf.examples.taipan.editor</module> + <module>org.eclipse.gmf.examples.taipan.editor.rcp</module> + <module>org.eclipse.gmf.examples.taipan.gmf.editor</module> + <module>org.eclipse.gmf.examples.taipan.gmf.editor.rcp</module> + <module>org.eclipse.gmf.examples.taipan.port.diagram</module> + <module>org.eclipse.gmf.examples.taipan.port.diagram.rcp</module> + <module>org.eclipse.gmf.examples.taipan.ui</module --> + <module>org.eclipse.gmf.examples.ui.pde</module> + <!-- module>org.eclipse.gmf.sketch</module> <module>org.eclipse.gmf.sketch.edit</module> + <module>org.eclipse.gmf.sketch.editor</module> <module>org.eclipse.gmf.sketch.transformer</module --> + <module>org.eclipse.gmf.ecore.editor</module> + </modules> + +</project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.doc-feature/pom.xml b/features/org.eclipse.gmf.doc-feature/pom.xml index 0c2e5ad7d..c2d0c0872 100644 --- a/features/org.eclipse.gmf.doc-feature/pom.xml +++ b/features/org.eclipse.gmf.doc-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.europa-feature/pom.xml b/features/org.eclipse.gmf.europa-feature/pom.xml index 2f1ac0bc4..f3671c742 100644 --- a/features/org.eclipse.gmf.europa-feature/pom.xml +++ b/features/org.eclipse.gmf.europa-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.examples-feature/pom.xml b/features/org.eclipse.gmf.examples-feature/pom.xml index f06b69be3..657b40e4a 100644 --- a/features/org.eclipse.gmf.examples-feature/pom.xml +++ b/features/org.eclipse.gmf.examples-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.examples.pde-feature/pom.xml b/features/org.eclipse.gmf.examples.pde-feature/pom.xml index 8c9f3d0b5..df3e3d69c 100644 --- a/features/org.eclipse.gmf.examples.pde-feature/pom.xml +++ b/features/org.eclipse.gmf.examples.pde-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.platform-feature/pom.xml b/features/org.eclipse.gmf.platform-feature/pom.xml index 3557dc402..285ae0ae8 100644 --- a/features/org.eclipse.gmf.platform-feature/pom.xml +++ b/features/org.eclipse.gmf.platform-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.sdk-feature/pom.xml b/features/org.eclipse.gmf.sdk-feature/pom.xml index 07aba7c31..81ae2cd49 100644 --- a/features/org.eclipse.gmf.sdk-feature/pom.xml +++ b/features/org.eclipse.gmf.sdk-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.sdk.experimental-feature/pom.xml b/features/org.eclipse.gmf.sdk.experimental-feature/pom.xml index 1e3d97497..8a7fcdf9f 100644 --- a/features/org.eclipse.gmf.sdk.experimental-feature/pom.xml +++ b/features/org.eclipse.gmf.sdk.experimental-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.sdk.experimental.source-feature/pom.xml b/features/org.eclipse.gmf.sdk.experimental.source-feature/pom.xml index 807190f62..64f6ec24a 100644 --- a/features/org.eclipse.gmf.sdk.experimental.source-feature/pom.xml +++ b/features/org.eclipse.gmf.sdk.experimental.source-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.tests-feature/pom.xml b/features/org.eclipse.gmf.tests-feature/pom.xml index f572f10c6..37e4562d4 100644 --- a/features/org.eclipse.gmf.tests-feature/pom.xml +++ b/features/org.eclipse.gmf.tests-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.tests.experimental-feature/pom.xml b/features/org.eclipse.gmf.tests.experimental-feature/pom.xml index 08ff3bcf4..26021f3b7 100644 --- a/features/org.eclipse.gmf.tests.experimental-feature/pom.xml +++ b/features/org.eclipse.gmf.tests.experimental-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.tests.experimental.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.tooling-feature/pom.xml b/features/org.eclipse.gmf.tooling-feature/pom.xml index b75039478..f053e1181 100644 --- a/features/org.eclipse.gmf.tooling-feature/pom.xml +++ b/features/org.eclipse.gmf.tooling-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.tooling.source-feature/pom.xml b/features/org.eclipse.gmf.tooling.source-feature/pom.xml index 5dafda0c4..bb88dc953 100644 --- a/features/org.eclipse.gmf.tooling.source-feature/pom.xml +++ b/features/org.eclipse.gmf.tooling.source-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/org.eclipse.gmf.xpand-feature/pom.xml b/features/org.eclipse.gmf.xpand-feature/pom.xml index 75b643050..aa812bae1 100644 --- a/features/org.eclipse.gmf.xpand-feature/pom.xml +++ b/features/org.eclipse.gmf.xpand-feature/pom.xml @@ -1,3 +1,13 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf.features</groupId> @@ -7,8 +17,8 @@ <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>features</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/features/pom.xml b/features/pom.xml new file mode 100755 index 000000000..2977df70e --- /dev/null +++ b/features/pom.xml @@ -0,0 +1,47 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>features</artifactId> + <packaging>pom</packaging> + <version>2.4.0-SNAPSHOT</version> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <modules> + <!-- features --> + <!-- Currently disabled since they require sources, not yet handled --> + <module>org.eclipse.gmf.doc-feature</module> + <!-- module>org.eclipse.gmf.europa-feature</module> + <module>org.eclipse.gmf.platform-feature</module--> + <module>org.eclipse.gmf.sdk.experimental.source-feature</module> + <module>org.eclipse.gmf.sdk.experimental-feature</module> + <module>org.eclipse.gmf.sdk-feature</module> + <module>org.eclipse.gmf.tooling.source-feature</module> + <module>org.eclipse.gmf.tooling-feature</module> + <!-- module>org.eclipse.gmf.xpand-feature</module --> + <module>org.eclipse.gmf.examples-feature</module> + <module>org.eclipse.gmf.examples.pde-feature</module> + + <!-- tests, should be a separate build against newly built repo, to test + also created repo (whole distribution) --> + <!-- module>org.eclipse.gmf.tests.experimental-feature</module --> + <!-- module>org.eclipse.gmf.tests-feature</module --> + </modules> + +</project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.bridge.trace/pom.xml b/plugins/org.eclipse.gmf.bridge.trace/pom.xml index 69c9f231a..bdc5365fb 100644 --- a/plugins/org.eclipse.gmf.bridge.trace/pom.xml +++ b/plugins/org.eclipse.gmf.bridge.trace/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.bridge.trace</artifactId> <version>1.0.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.bridge.ui.dashboard/pom.xml b/plugins/org.eclipse.gmf.bridge.ui.dashboard/pom.xml index d8d50ec7e..9c2e9bc38 100644 --- a/plugins/org.eclipse.gmf.bridge.ui.dashboard/pom.xml +++ b/plugins/org.eclipse.gmf.bridge.ui.dashboard/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.bridge.ui.dashboard</artifactId> <version>2.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.bridge.ui/pom.xml b/plugins/org.eclipse.gmf.bridge.ui/pom.xml index ba6fcc781..319ee39d3 100644 --- a/plugins/org.eclipse.gmf.bridge.ui/pom.xml +++ b/plugins/org.eclipse.gmf.bridge.ui/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.bridge.ui</artifactId> <version>1.3.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.bridge/pom.xml b/plugins/org.eclipse.gmf.bridge/pom.xml index 52e5a5fb4..6b8377b4f 100644 --- a/plugins/org.eclipse.gmf.bridge/pom.xml +++ b/plugins/org.eclipse.gmf.bridge/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.bridge</artifactId> <version>1.1.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.codegen.edit/pom.xml b/plugins/org.eclipse.gmf.codegen.edit/pom.xml index 1e58e02bc..4cae219f0 100644 --- a/plugins/org.eclipse.gmf.codegen.edit/pom.xml +++ b/plugins/org.eclipse.gmf.codegen.edit/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.codegen.edit</artifactId> <version>2.2.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.codegen.lite.ui/pom.xml b/plugins/org.eclipse.gmf.codegen.lite.ui/pom.xml index 114b0190f..66f0f0b87 100644 --- a/plugins/org.eclipse.gmf.codegen.lite.ui/pom.xml +++ b/plugins/org.eclipse.gmf.codegen.lite.ui/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.codegen.lite.ui</artifactId> <version>1.1.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.codegen.lite/pom.xml b/plugins/org.eclipse.gmf.codegen.lite/pom.xml index 55c346e52..2b69ee8a4 100644 --- a/plugins/org.eclipse.gmf.codegen.lite/pom.xml +++ b/plugins/org.eclipse.gmf.codegen.lite/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.codegen.lite</artifactId> <version>1.1.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.codegen.ui/pom.xml b/plugins/org.eclipse.gmf.codegen.ui/pom.xml index a43cb7b68..74b183134 100644 --- a/plugins/org.eclipse.gmf.codegen.ui/pom.xml +++ b/plugins/org.eclipse.gmf.codegen.ui/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.codegen.ui</artifactId> <version>1.1.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.codegen/pom.xml b/plugins/org.eclipse.gmf.codegen/pom.xml index 0ec4b440b..c13c593e1 100644 --- a/plugins/org.eclipse.gmf.codegen/pom.xml +++ b/plugins/org.eclipse.gmf.codegen/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.codegen</artifactId> <version>2.2.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.common/pom.xml b/plugins/org.eclipse.gmf.common/pom.xml index 60bfd8a0a..0a1d09edd 100644 --- a/plugins/org.eclipse.gmf.common/pom.xml +++ b/plugins/org.eclipse.gmf.common/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.common</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.formtk/pom.xml b/plugins/org.eclipse.gmf.formtk/pom.xml index e6007962b..dedb39607 100644 --- a/plugins/org.eclipse.gmf.formtk/pom.xml +++ b/plugins/org.eclipse.gmf.formtk/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.formtk</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.graphdef.codegen.ui/pom.xml b/plugins/org.eclipse.gmf.graphdef.codegen.ui/pom.xml index e5349c24e..8abca1078 100644 --- a/plugins/org.eclipse.gmf.graphdef.codegen.ui/pom.xml +++ b/plugins/org.eclipse.gmf.graphdef.codegen.ui/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.graphdef.codegen.ui</artifactId> <version>1.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> <build> <plugins> diff --git a/plugins/org.eclipse.gmf.graphdef.codegen/pom.xml b/plugins/org.eclipse.gmf.graphdef.codegen/pom.xml index 840b8c8e6..88f44b7aa 100644 --- a/plugins/org.eclipse.gmf.graphdef.codegen/pom.xml +++ b/plugins/org.eclipse.gmf.graphdef.codegen/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.graphdef.codegen</artifactId> <version>2.0.101-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.graphdef.edit/pom.xml b/plugins/org.eclipse.gmf.graphdef.edit/pom.xml index d22a33efa..66f1777fc 100644 --- a/plugins/org.eclipse.gmf.graphdef.edit/pom.xml +++ b/plugins/org.eclipse.gmf.graphdef.edit/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.graphdef.edit</artifactId> <version>2.0.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.graphdef.editor/pom.xml b/plugins/org.eclipse.gmf.graphdef.editor/pom.xml index 8ef14e014..8bbc6aed3 100644 --- a/plugins/org.eclipse.gmf.graphdef.editor/pom.xml +++ b/plugins/org.eclipse.gmf.graphdef.editor/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.graphdef.editor</artifactId> <version>1.1.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.graphdef/pom.xml b/plugins/org.eclipse.gmf.graphdef/pom.xml index 881b8c5c7..19fdb9114 100644 --- a/plugins/org.eclipse.gmf.graphdef/pom.xml +++ b/plugins/org.eclipse.gmf.graphdef/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.graphdef</artifactId> <version>2.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.map.edit/pom.xml b/plugins/org.eclipse.gmf.map.edit/pom.xml index a5b8aa797..7d9f9703d 100644 --- a/plugins/org.eclipse.gmf.map.edit/pom.xml +++ b/plugins/org.eclipse.gmf.map.edit/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.map.edit</artifactId> <version>2.2.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.map.editor/pom.xml b/plugins/org.eclipse.gmf.map.editor/pom.xml index d0d459897..2797f37b2 100644 --- a/plugins/org.eclipse.gmf.map.editor/pom.xml +++ b/plugins/org.eclipse.gmf.map.editor/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.map.editor</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.map/pom.xml b/plugins/org.eclipse.gmf.map/pom.xml index 1521c6d35..e7ca1cbc7 100644 --- a/plugins/org.eclipse.gmf.map/pom.xml +++ b/plugins/org.eclipse.gmf.map/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.map</artifactId> <version>2.2.101-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml b/plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml index 422131b74..dd869082a 100644 --- a/plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml +++ b/plugins/org.eclipse.gmf.runtime.lite.svg/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.runtime.lite.svg</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.runtime.lite/pom.xml b/plugins/org.eclipse.gmf.runtime.lite/pom.xml index da331f286..1128696e1 100644 --- a/plugins/org.eclipse.gmf.runtime.lite/pom.xml +++ b/plugins/org.eclipse.gmf.runtime.lite/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.runtime.lite</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.sdk/pom.xml b/plugins/org.eclipse.gmf.sdk/pom.xml index d41e98716..7eddffc7b 100644 --- a/plugins/org.eclipse.gmf.sdk/pom.xml +++ b/plugins/org.eclipse.gmf.sdk/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.sdk</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.templates.legacy/pom.xml b/plugins/org.eclipse.gmf.templates.legacy/pom.xml index 6d4db609f..3794356ed 100644 --- a/plugins/org.eclipse.gmf.templates.legacy/pom.xml +++ b/plugins/org.eclipse.gmf.templates.legacy/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.templates.legacy</artifactId> <version>1.0.1-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.tooldef.edit/pom.xml b/plugins/org.eclipse.gmf.tooldef.edit/pom.xml index 4dd528723..e47db1f4c 100644 --- a/plugins/org.eclipse.gmf.tooldef.edit/pom.xml +++ b/plugins/org.eclipse.gmf.tooldef.edit/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.tooldef.edit</artifactId> <version>2.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.tooldef/pom.xml b/plugins/org.eclipse.gmf.tooldef/pom.xml index 3d5b03680..e3eb3d8de 100644 --- a/plugins/org.eclipse.gmf.tooldef/pom.xml +++ b/plugins/org.eclipse.gmf.tooldef/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.tooldef</artifactId> <version>2.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.tooling/pom.xml b/plugins/org.eclipse.gmf.tooling/pom.xml index e5570edc5..971c20697 100644 --- a/plugins/org.eclipse.gmf.tooling/pom.xml +++ b/plugins/org.eclipse.gmf.tooling/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.tooling</artifactId> <version>2.1.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.ui.capabilities/pom.xml b/plugins/org.eclipse.gmf.ui.capabilities/pom.xml index f5c9fe7e6..57f99d543 100644 --- a/plugins/org.eclipse.gmf.ui.capabilities/pom.xml +++ b/plugins/org.eclipse.gmf.ui.capabilities/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.ui.capabilities</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.validate/pom.xml b/plugins/org.eclipse.gmf.validate/pom.xml index e2a8d15d1..90433e6fe 100644 --- a/plugins/org.eclipse.gmf.validate/pom.xml +++ b/plugins/org.eclipse.gmf.validate/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.validate</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.xpand.ant/pom.xml b/plugins/org.eclipse.gmf.xpand.ant/pom.xml index 1b011c85c..144da696c 100644 --- a/plugins/org.eclipse.gmf.xpand.ant/pom.xml +++ b/plugins/org.eclipse.gmf.xpand.ant/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.xpand.ant</artifactId> <version>0.9.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.xpand.editor/pom.xml b/plugins/org.eclipse.gmf.xpand.editor/pom.xml index 28c389689..bf769ddca 100644 --- a/plugins/org.eclipse.gmf.xpand.editor/pom.xml +++ b/plugins/org.eclipse.gmf.xpand.editor/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.xpand.editor</artifactId> <version>2.1.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.xpand.migration/pom.xml b/plugins/org.eclipse.gmf.xpand.migration/pom.xml index 112b7b6f9..609e1ccfd 100644 --- a/plugins/org.eclipse.gmf.xpand.migration/pom.xml +++ b/plugins/org.eclipse.gmf.xpand.migration/pom.xml @@ -1,15 +1,25 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.xpand.migration</artifactId> <version>1.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - <parent> - <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> - <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> - </parent> + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>plugins</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> </project>
\ No newline at end of file diff --git a/plugins/org.eclipse.gmf.xpand.qvtlibrary/pom.xml b/plugins/org.eclipse.gmf.xpand.qvtlibrary/pom.xml index bbdd3395b..ffa1dab2c 100644 --- a/plugins/org.eclipse.gmf.xpand.qvtlibrary/pom.xml +++ b/plugins/org.eclipse.gmf.xpand.qvtlibrary/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.xpand.qvtlibrary</artifactId> <version>1.1.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/org.eclipse.gmf.xpand/pom.xml b/plugins/org.eclipse.gmf.xpand/pom.xml index 28651d90d..d20ce254f 100644 --- a/plugins/org.eclipse.gmf.xpand/pom.xml +++ b/plugins/org.eclipse.gmf.xpand/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.plugins</groupId> <artifactId>org.eclipse.gmf.xpand</artifactId> <version>2.1.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>plugins</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/plugins/pom.xml b/plugins/pom.xml new file mode 100755 index 000000000..60a383e96 --- /dev/null +++ b/plugins/pom.xml @@ -0,0 +1,93 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>plugins</artifactId> + <packaging>pom</packaging> + <version>2.4.0-SNAPSHOT</version> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <modules> + <!-- plugins --> + <module>org.eclipse.gmf.graphdef</module> + <module>org.eclipse.gmf.graphdef.codegen</module> + <module>org.eclipse.gmf.graphdef.codegen.ui</module> + <module>org.eclipse.gmf.graphdef.edit</module> + <module>org.eclipse.gmf.graphdef.editor</module> + <module>org.eclipse.gmf.tooldef</module> + <module>org.eclipse.gmf.tooldef.edit</module> + <module>org.eclipse.gmf.map</module> + <module>org.eclipse.gmf.map.edit</module> + <module>org.eclipse.gmf.map.editor</module> + <module>org.eclipse.gmf.bridge</module> + <module>org.eclipse.gmf.bridge.trace</module> + <module>org.eclipse.gmf.bridge.ui</module> + <module>org.eclipse.gmf.bridge.ui.dashboard</module> + <module>org.eclipse.gmf.codegen</module> + <module>org.eclipse.gmf.codegen.edit</module> + <module>org.eclipse.gmf.codegen.lite</module> + <module>org.eclipse.gmf.codegen.lite.ui</module> + <module>org.eclipse.gmf.codegen.ui</module> + <module>org.eclipse.gmf.common</module> + <!-- module>org.eclipse.gmf.formtk</module--> + <module>org.eclipse.gmf.runtime.lite</module> + <module>org.eclipse.gmf.runtime.lite.svg</module> + <module>org.eclipse.gmf.sdk</module> + <module>org.eclipse.gmf.templates.legacy</module> + <module>org.eclipse.gmf.tooling</module> + <module>org.eclipse.gmf.ui.capabilities</module> + <module>org.eclipse.gmf.validate</module> + <module>org.eclipse.gmf.xpand</module> + <module>org.eclipse.gmf.xpand.ant</module> + <module>org.eclipse.gmf.xpand.editor</module> + <module>org.eclipse.gmf.xpand.migration</module> + <module>org.eclipse.gmf.xpand.qvtlibrary</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.8</version> + <configuration> + <minmemory>128m</minmemory> + <maxmemory>1g</maxmemory> + </configuration> + <executions> + <execution> + <id>aggregate</id> + <goals> + <goal>aggregate</goal> + </goals> + <phase>generate-resources</phase> + <configuration> + <minmemory>128m</minmemory> + <maxmemory>1024m</maxmemory> + <reportOutputDirectory>${javadocReportOutputDirectory}</reportOutputDirectory> + <destDir>${javadocDestDir}</destDir> + <excludePackageNames>*.internal:*.internal.*:*.tests:*.tests.*:*.examples:*.examples.*</excludePackageNames> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file diff --git a/repository/.cvsignore b/repository/.cvsignore new file mode 100644 index 000000000..eb5a316cb --- /dev/null +++ b/repository/.cvsignore @@ -0,0 +1 @@ +target diff --git a/repository/category.xml b/repository/category.xml new file mode 100755 index 000000000..0bdd29ccb --- /dev/null +++ b/repository/category.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site + mirrorsURL="http://www.eclipse.org/downloads/download.php?file=/modeling/gmp/gmf-tooling/updates/milestones/site.xml&format=xml"> + <description url="http://download.eclipse.org/modeling/gmp/gmf-tooling/updates/milestones"> + A generative framework and runtime for developing graphical applications which leverage both the Eclipse Modeling Framework (EMF) and Graphical Editing Framework (GEF). + </description> + <feature url="features/org.eclipse.gmf.tooling_2.4.0.qualifier.jar" id="org.eclipse.gmf.tooling" version="2.4.0.qualifier"> + <category name="GMF Tooling"/> + </feature> + <feature url="features/org.eclipse.gmf.sdk_2.4.0.qualifier.jar" id="org.eclipse.gmf.sdk" version="2.4.0.qualifier"> + <category name="GMF Tooling"/> + </feature> + <feature url="features/org.eclipse.gmf.sdk.experimental_1.2.0.qualifier.jar" id="org.eclipse.gmf.sdk.experimental" version="1.2.0.qualifier"> + <category name="GMF Tooling"/> + </feature> + <feature url="features/org.eclipse.gmf.examples_1.4.0.qualifier.jar" id="org.eclipse.gmf.examples" version="1.4.0.qualifier"> + <category name="GMF Tooling - Examples"/> + </feature> + <feature url="features/org.eclipse.gmf.examples.pde_1.4.0.qualifier.jar" id="org.eclipse.gmf.examples.pde" version="1.4.0.qualifier"> + <category name="GMF Tooling - Examples"/> + </feature> + <category-def name="GMF Tooling" label="GMF Tooling"/> + <category-def name="GMF Tooling - Examples" label="GMF Tooling - Examples"/> +</site> diff --git a/repository/pom.xml b/repository/pom.xml new file mode 100755 index 000000000..d04646efb --- /dev/null +++ b/repository/pom.xml @@ -0,0 +1,118 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>repository</artifactId> + <version>2.4.0-SNAPSHOT</version> + <packaging>eclipse-repository</packaging> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <profiles> + <profile> + <id>build-at-eclipse-org</id> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.dash.maven</groupId> + <artifactId>eclipse-maven-signing-plugin</artifactId> + <version>1.0.0</version> + <executions> + <!-- Pack the p2 repository. --> + <execution> + <id>pack</id> + <phase>package</phase> + <configuration> + <inputFile>${project.build.directory}/org.eclipse.gmf.tooling-repository.zip</inputFile> + </configuration> + <goals> + <goal>pack</goal> + </goals> + </execution> + <!-- Sign the p2 repository --> + <execution> + <id>sign</id> + <configuration> + <inputFile>${project.build.directory}/org.eclipse.gmf.tooling-repository.zip</inputFile> + <signerInputDirectory>/home/data/httpd/download-staging.priv/modeling/gmf/gmf-tooling</signerInputDirectory> + </configuration> + <phase>package</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + <!-- Repack the p2 repository --> + <execution> + <id>repack</id> + <configuration> + <inputFile>${project.build.directory}/signed/site_assembly.zip</inputFile> + </configuration> + <phase>package</phase> + <goals> + <goal>pack</goal> + </goals> + </execution> + <!-- Signing and packing alters checksums so fix them --> + <execution> + <id>fixCheckSums</id> + <phase>package</phase> + <goals> + <goal>fixCheckSums</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>deploy</id> + <phase>install</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <tasks> + <delete includeemptydirs="false"> + <fileset dir="/home/data/httpd/download.eclipse.org/modeling/gmp/gmf-tooling/updates/dev-snapshots"> + <include name="**" /> + </fileset> + </delete> + <copy includeemptydirs="false" todir="/home/data/httpd/download.eclipse.org/modeling/gmp/gmf-tooling/updates/dev-snapshots"> + <fileset dir="target/checksumFix"> + <include name="**" /> + </fileset> + </copy> + </tasks> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + <pluginRepositories> + <pluginRepository> + <id>eclipse-nexus</id> + <url>http://maven.eclipse.org/nexus/content/groups/public/</url> + </pluginRepository> + </pluginRepositories> + +</project>
\ No newline at end of file diff --git a/tests/org.eclipse.gmf.tests.lite/pom.xml b/tests/org.eclipse.gmf.tests.lite/pom.xml index 686a2d29e..0af8ce94a 100644 --- a/tests/org.eclipse.gmf.tests.lite/pom.xml +++ b/tests/org.eclipse.gmf.tests.lite/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.tests.lite</artifactId> <packaging>eclipse-test-plugin</packaging> <version>2.0.200-SNAPSHOT</version> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>tests</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/tests/org.eclipse.gmf.tests.xpand.migration/pom.xml b/tests/org.eclipse.gmf.tests.xpand.migration/pom.xml index bbfbfff0d..abfa02648 100644 --- a/tests/org.eclipse.gmf.tests.xpand.migration/pom.xml +++ b/tests/org.eclipse.gmf.tests.xpand.migration/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.tests.migration</artifactId> <packaging>eclipse-test-plugin</packaging> <version>1.0.100-SNAPSHOT</version> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>tests</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/tests/org.eclipse.gmf.tests.xpand/pom.xml b/tests/org.eclipse.gmf.tests.xpand/pom.xml index eb0cf45de..30cb96332 100644 --- a/tests/org.eclipse.gmf.tests.xpand/pom.xml +++ b/tests/org.eclipse.gmf.tests.xpand/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.tests.xpand</artifactId> <packaging>eclipse-test-plugin</packaging> <version>2.0.100-SNAPSHOT</version> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>tests</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/tests/org.eclipse.gmf.tests/pom.xml b/tests/org.eclipse.gmf.tests/pom.xml index c234315ce..a40fba1a9 100644 --- a/tests/org.eclipse.gmf.tests/pom.xml +++ b/tests/org.eclipse.gmf.tests/pom.xml @@ -1,16 +1,26 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> <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.gmf</groupId> + <groupId>org.eclipse.gmf.tests</groupId> <artifactId>org.eclipse.gmf.tests</artifactId> <packaging>eclipse-test-plugin</packaging> <version>2.1.0-SNAPSHOT</version> <parent> <groupId>org.eclipse.gmf</groupId> - <artifactId>org.eclipse.gmf.tooling-parent</artifactId> + <artifactId>tests</artifactId> <version>2.4.0-SNAPSHOT</version> - <relativePath>../../releng/org.eclipse.gmf.tooling-parent</relativePath> + <relativePath>../</relativePath> </parent> <build> diff --git a/tests/pom.xml b/tests/pom.xml new file mode 100755 index 000000000..70fbc25b8 --- /dev/null +++ b/tests/pom.xml @@ -0,0 +1,33 @@ +<!-- + * Copyright (c) 2011 PetalsLink + * 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: + * Mickael istria (PetalsLink) +--> +<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.gmf</groupId> + <artifactId>tests</artifactId> + <packaging>pom</packaging> + <version>2.4.0-SNAPSHOT</version> + + <parent> + <groupId>org.eclipse.gmf</groupId> + <artifactId>parent</artifactId> + <version>2.4.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + + <modules> + <module>org.eclipse.gmf.tests</module> + <module>org.eclipse.gmf.tests.lite</module> + <module>org.eclipse.gmf.tests.xpand</module> + <module>org.eclipse.gmf.tests.xpand.migration</module> + </modules> + +</project>
\ No newline at end of file |