diff options
| author | Dani Megert | 2019-05-01 09:00:54 +0000 |
|---|---|---|
| committer | Dani Megert | 2019-05-01 09:01:05 +0000 |
| commit | 4cc8544c7ba280421d7a554ce512bcc4c46a3979 (patch) | |
| tree | acdae051be12872517695fe1c4b1978a30ace4b7 | |
| parent | dce31bfefa6afab56b6fadbd673e35e70bba6dc9 (diff) | |
| download | eclipse.platform.ui-4cc8544c7ba280421d7a554ce512bcc4c46a3979.tar.gz eclipse.platform.ui-4cc8544c7ba280421d7a554ce512bcc4c46a3979.tar.xz eclipse.platform.ui-4cc8544c7ba280421d7a554ce512bcc4c46a3979.zip | |
Revert "Bug 535382 - Use pomless builds in eclipse.platform.ui"I20190501-0525
This reverts commit 6f6f54d027897abce4b22c9526ee0d3ddbd9fa80.
Change-Id: Ie182727a2a21aeff981d048eb5a4b8d0c6e462a2
37 files changed, 953 insertions, 0 deletions
diff --git a/bundles/org.eclipse.core.commands/pom.xml b/bundles/org.eclipse.core.commands/pom.xml new file mode 100644 index 00000000000..3626479ea8b --- /dev/null +++ b/bundles/org.eclipse.core.commands/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.core</groupId> + <artifactId>org.eclipse.core.commands</artifactId> + <version>3.9.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.core.databinding.beans/pom.xml b/bundles/org.eclipse.core.databinding.beans/pom.xml new file mode 100644 index 00000000000..a117db64993 --- /dev/null +++ b/bundles/org.eclipse.core.databinding.beans/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 441263, 483395 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.core</groupId> + <artifactId>org.eclipse.core.databinding.beans</artifactId> + <version>1.5.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> +</project> diff --git a/bundles/org.eclipse.core.databinding.observable/pom.xml b/bundles/org.eclipse.core.databinding.observable/pom.xml new file mode 100644 index 00000000000..6db5d07d406 --- /dev/null +++ b/bundles/org.eclipse.core.databinding.observable/pom.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 441263, 483395 + Stefan Xenos <sxenos@gmail.com> - Bug 335792 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.core</groupId> + <artifactId>org.eclipse.core.databinding.observable</artifactId> + <version>1.7.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + +</project> diff --git a/bundles/org.eclipse.core.databinding.property/pom.xml b/bundles/org.eclipse.core.databinding.property/pom.xml new file mode 100644 index 00000000000..f8df3945aef --- /dev/null +++ b/bundles/org.eclipse.core.databinding.property/pom.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2018 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 441263, 483395 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.core</groupId> + <artifactId>org.eclipse.core.databinding.property</artifactId> + <version>1.7.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + +</project> diff --git a/bundles/org.eclipse.core.databinding/pom.xml b/bundles/org.eclipse.core.databinding/pom.xml new file mode 100644 index 00000000000..7e82b7a1335 --- /dev/null +++ b/bundles/org.eclipse.core.databinding/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 441263, 483395 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.core</groupId> + <artifactId>org.eclipse.core.databinding</artifactId> + <version>1.7.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> +</project> diff --git a/bundles/org.eclipse.e4.core.commands/pom.xml b/bundles/org.eclipse.e4.core.commands/pom.xml new file mode 100644 index 00000000000..5791e825fd4 --- /dev/null +++ b/bundles/org.eclipse.e4.core.commands/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.core.commands</artifactId> + <version>0.12.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.emf.xpath/pom.xml b/bundles/org.eclipse.e4.emf.xpath/pom.xml new file mode 100644 index 00000000000..4ce12641c0f --- /dev/null +++ b/bundles/org.eclipse.e4.emf.xpath/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.emf.xpath</artifactId> + <version>0.2.200-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.bindings/pom.xml b/bundles/org.eclipse.e4.ui.bindings/pom.xml new file mode 100644 index 00000000000..e7eba172e35 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.bindings/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.bindings</artifactId> + <version>0.12.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.css.core/pom.xml b/bundles/org.eclipse.e4.ui.css.core/pom.xml new file mode 100644 index 00000000000..864a33bf64d --- /dev/null +++ b/bundles/org.eclipse.e4.ui.css.core/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.css.core</artifactId> + <version>0.12.700-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.css.swt.theme/pom.xml b/bundles/org.eclipse.e4.ui.css.swt.theme/pom.xml new file mode 100644 index 00000000000..eef5b4bdc77 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.css.swt.theme/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2014 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.css.swt.theme</artifactId> + <version>0.12.200-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.css.swt/pom.xml b/bundles/org.eclipse.e4.ui.css.swt/pom.xml new file mode 100644 index 00000000000..1f8929bdec1 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.css.swt/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2013 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.css.swt</artifactId> + <version>0.13.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.di/pom.xml b/bundles/org.eclipse.e4.ui.di/pom.xml new file mode 100644 index 00000000000..8619e0a345c --- /dev/null +++ b/bundles/org.eclipse.e4.ui.di/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.di</artifactId> + <version>1.2.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.dialogs/pom.xml b/bundles/org.eclipse.e4.ui.dialogs/pom.xml new file mode 100644 index 00000000000..882bc484b10 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.dialogs/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2014, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Lars Vogel <Lars.Vogel@vogella.com> - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.dialogs</artifactId> + <version>1.1.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.model.workbench/pom.xml b/bundles/org.eclipse.e4.ui.model.workbench/pom.xml new file mode 100644 index 00000000000..e1e3b9c6ed5 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.model.workbench/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2015 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.model.workbench</artifactId> + <version>2.1.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.progress/pom.xml b/bundles/org.eclipse.e4.ui.progress/pom.xml new file mode 100644 index 00000000000..487d40e3caa --- /dev/null +++ b/bundles/org.eclipse.e4.ui.progress/pom.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.progress</artifactId> + <version>0.2.100-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + +</project> diff --git a/bundles/org.eclipse.e4.ui.services/pom.xml b/bundles/org.eclipse.e4.ui.services/pom.xml new file mode 100644 index 00000000000..0c35e783c24 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.services/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.services</artifactId> + <version>1.3.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.widgets/pom.xml b/bundles/org.eclipse.e4.ui.widgets/pom.xml new file mode 100644 index 00000000000..ab87d981d58 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.widgets/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.widgets</artifactId> + <version>1.2.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.workbench.addons.swt/pom.xml b/bundles/org.eclipse.e4.ui.workbench.addons.swt/pom.xml new file mode 100644 index 00000000000..b09502478fa --- /dev/null +++ b/bundles/org.eclipse.e4.ui.workbench.addons.swt/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.workbench.addons.swt</artifactId> + <version>1.3.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/pom.xml b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/pom.xml new file mode 100644 index 00000000000..47b1e96441f --- /dev/null +++ b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.workbench.renderers.swt</artifactId> + <version>0.14.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/pom.xml b/bundles/org.eclipse.e4.ui.workbench.swt/pom.xml new file mode 100644 index 00000000000..86ee07ace08 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.workbench.swt/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.workbench.swt</artifactId> + <version>0.14.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.workbench/pom.xml b/bundles/org.eclipse.e4.ui.workbench/pom.xml new file mode 100644 index 00000000000..12b620116c9 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.workbench/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.workbench</artifactId> + <version>1.9.100-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.e4.ui.workbench3/pom.xml b/bundles/org.eclipse.e4.ui.workbench3/pom.xml new file mode 100644 index 00000000000..31f9b68f313 --- /dev/null +++ b/bundles/org.eclipse.e4.ui.workbench3/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.e4</groupId> + <artifactId>org.eclipse.e4.ui.workbench3</artifactId> + <version>0.15.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.jface.databinding/pom.xml b/bundles/org.eclipse.jface.databinding/pom.xml new file mode 100644 index 00000000000..a9e56d6c7b3 --- /dev/null +++ b/bundles/org.eclipse.jface.databinding/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 441263, 483395 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.jface</groupId> + <artifactId>org.eclipse.jface.databinding</artifactId> + <version>1.9.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> +</project> diff --git a/bundles/org.eclipse.jface/pom.xml b/bundles/org.eclipse.jface/pom.xml new file mode 100644 index 00000000000..e3c0c0a356b --- /dev/null +++ b/bundles/org.eclipse.jface/pom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2015 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 475688 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.jface</groupId> + <artifactId>org.eclipse.jface</artifactId> + <version>3.16.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + +</project> diff --git a/bundles/org.eclipse.ui.browser/pom.xml b/bundles/org.eclipse.ui.browser/pom.xml new file mode 100644 index 00000000000..1ba89dc42ae --- /dev/null +++ b/bundles/org.eclipse.ui.browser/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2019 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.browser</artifactId> + <version>3.6.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.ui.forms/pom.xml b/bundles/org.eclipse.ui.forms/pom.xml new file mode 100644 index 00000000000..7ed27bfe890 --- /dev/null +++ b/bundles/org.eclipse.ui.forms/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2015 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.forms</artifactId> + <version>3.8.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.ui.ide.application/pom.xml b/bundles/org.eclipse.ui.ide.application/pom.xml new file mode 100644 index 00000000000..0c14f009d46 --- /dev/null +++ b/bundles/org.eclipse.ui.ide.application/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.ide.application</artifactId> + <version>1.3.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.ui.ide/pom.xml b/bundles/org.eclipse.ui.ide/pom.xml new file mode 100644 index 00000000000..5e709da4692 --- /dev/null +++ b/bundles/org.eclipse.ui.ide/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@gmail.com> - Bug 423025, 475259 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.ide</artifactId> + <version>3.15.200-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> +</project> diff --git a/bundles/org.eclipse.ui.monitoring/pom.xml b/bundles/org.eclipse.ui.monitoring/pom.xml new file mode 100644 index 00000000000..244dc3f6c90 --- /dev/null +++ b/bundles/org.eclipse.ui.monitoring/pom.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (C) 2014, Google Inc and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License 2.0 + which accompanies this distribution, and is available at + https://www.eclipse.org/legal/epl-2.0/ + + SPDX-License-Identifier: EPL-2.0 + + Contributors: + Marcus Eng (Google) - initial API and implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.monitoring</artifactId> + <version>1.1.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project>
\ No newline at end of file diff --git a/bundles/org.eclipse.ui.navigator.resources/pom.xml b/bundles/org.eclipse.ui.navigator.resources/pom.xml new file mode 100644 index 00000000000..9c417d0a5e5 --- /dev/null +++ b/bundles/org.eclipse.ui.navigator.resources/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.navigator.resources</artifactId> + <version>3.6.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.ui.navigator/pom.xml b/bundles/org.eclipse.ui.navigator/pom.xml new file mode 100644 index 00000000000..46960640ee0 --- /dev/null +++ b/bundles/org.eclipse.ui.navigator/pom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@gmail.com> - Bug 441114 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.navigator</artifactId> + <version>3.7.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + +</project> diff --git a/bundles/org.eclipse.ui.themes/pom.xml b/bundles/org.eclipse.ui.themes/pom.xml new file mode 100644 index 00000000000..87e91f4fb1d --- /dev/null +++ b/bundles/org.eclipse.ui.themes/pom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2014, 2018 vogella GmbH and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Lars Vogel <Lars.Vogel@vogella.com> - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.themes</artifactId> + <version>1.2.600-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> diff --git a/bundles/org.eclipse.ui.views.log/pom.xml b/bundles/org.eclipse.ui.views.log/pom.xml new file mode 100644 index 00000000000..eea6217f4e3 --- /dev/null +++ b/bundles/org.eclipse.ui.views.log/pom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2016 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.views.log</artifactId> + <version>1.2.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + +</project> diff --git a/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml b/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml new file mode 100644 index 00000000000..bfed67793d1 --- /dev/null +++ b/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2015 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Lars Vogel <Lars.Vogel@vogella.com> - Bug 481754 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.views.properties.tabbed</artifactId> + <version>3.8.500-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + + </project> diff --git a/bundles/org.eclipse.ui.views/pom.xml b/bundles/org.eclipse.ui.views/pom.xml new file mode 100644 index 00000000000..8181355c013 --- /dev/null +++ b/bundles/org.eclipse.ui.views/pom.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.views</artifactId> + <version>3.9.400-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + +</project> diff --git a/bundles/org.eclipse.ui.workbench/pom.xml b/bundles/org.eclipse.ui.workbench/pom.xml new file mode 100644 index 00000000000..ac7f8efaa56 --- /dev/null +++ b/bundles/org.eclipse.ui.workbench/pom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012, 2017 Eclipse Foundation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Igor Fedorenko - initial implementation + Kaloyan Raev <kaloyan.r@zend.com> - Bug 322002 +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.ui.workbench</artifactId> + <version>3.114.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <properties> + <code.ignoredWarnings>-warn:-deprecation,raw,unchecked</code.ignoredWarnings> + </properties> + + </project> diff --git a/bundles/org.eclipse.urischeme/pom.xml b/bundles/org.eclipse.urischeme/pom.xml new file mode 100644 index 00000000000..7aca05a4a2a --- /dev/null +++ b/bundles/org.eclipse.urischeme/pom.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2018 SAP SE and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Distribution License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/org/documents/edl-v10.php + + Contributors: + Matthias Becker - initial implementation + Marcus Höpfner - initial implementation +--> +<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> + <parent> + <artifactId>eclipse.platform.ui</artifactId> + <groupId>eclipse.platform.ui</groupId> + <version>4.12.0-SNAPSHOT</version> + <relativePath>../../</relativePath> + </parent> + <groupId>org.eclipse.ui</groupId> + <artifactId>org.eclipse.urischeme</artifactId> + <version>1.0.300-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> +</project> |
