From 21264203953f2d1d87e79efe930d248bdd127bfa Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Tue, 13 Dec 2016 15:43:28 +0100 Subject: [PATCH] [xtext lang] contributed new bundle 'org.eclipse.xtext.xtext.ide' Signed-off-by: Christian Schneider --- org.eclipse.xtext.xtext.ide/.classpath | 17 +++++++++++ org.eclipse.xtext.xtext.ide/.project | 26 +++++++++++++++++ .../META-INF/MANIFEST.MF | 13 +++++++++ org.eclipse.xtext.xtext.ide/about.html | 28 +++++++++++++++++++ org.eclipse.xtext.xtext.ide/build.gradle | 6 ++++ releng/p2/category.xml | 6 ++++ releng/pom.xml | 11 ++++++++ settings.gradle | 1 + 8 files changed, 108 insertions(+) create mode 100644 org.eclipse.xtext.xtext.ide/.classpath create mode 100644 org.eclipse.xtext.xtext.ide/.project create mode 100644 org.eclipse.xtext.xtext.ide/META-INF/MANIFEST.MF create mode 100644 org.eclipse.xtext.xtext.ide/about.html create mode 100644 org.eclipse.xtext.xtext.ide/build.gradle diff --git a/org.eclipse.xtext.xtext.ide/.classpath b/org.eclipse.xtext.xtext.ide/.classpath new file mode 100644 index 000000000..61b3660a4 --- /dev/null +++ b/org.eclipse.xtext.xtext.ide/.classpath @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/org.eclipse.xtext.xtext.ide/.project b/org.eclipse.xtext.xtext.ide/.project new file mode 100644 index 000000000..9d143a2fb --- /dev/null +++ b/org.eclipse.xtext.xtext.ide/.project @@ -0,0 +1,26 @@ + + + org.eclipse.xtext.xtext.ide + Xtext Language generic IDE support. + + + org.eclipse.buildship.core.gradleprojectnature + org.eclipse.jdt.core.javanature + org.eclipse.xtext.ui.shared.xtextNature + + + + org.eclipse.xtext.ui.shared.xtextBuilder + + + + org.eclipse.jdt.core.javabuilder + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + diff --git a/org.eclipse.xtext.xtext.ide/META-INF/MANIFEST.MF b/org.eclipse.xtext.xtext.ide/META-INF/MANIFEST.MF new file mode 100644 index 000000000..75bdc896f --- /dev/null +++ b/org.eclipse.xtext.xtext.ide/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Xtext Language IDE Support +Bundle-SymbolicName: org.eclipse.xtext.xtext.ide;singleton:=true +Bundle-Version: 2.11.0.qualifier +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Bundle-ActivationPolicy: lazy +Bundle-Vendor: Eclipse Xtext +Require-Bundle: org.eclipse.xtext.ide;bundle-version="2.11.0" +Import-Package: org.apache.log4j;version="1.2.15" +Export-Package: org.eclipse.xtext.xtext.ide;x-friends:="org.eclipse.xtext.xtext.ui", + org.eclipse.xtext.xtext.ide.contentassist.antlr;x-friends:="org.eclipse.xtext.xtext.ui", + org.eclipse.xtext.xtext.ide.contentassist.antlr.internal;x-friends:="org.eclipse.xtext.xtext.ui" diff --git a/org.eclipse.xtext.xtext.ide/about.html b/org.eclipse.xtext.xtext.ide/about.html new file mode 100644 index 000000000..1b8f94080 --- /dev/null +++ b/org.eclipse.xtext.xtext.ide/about.html @@ -0,0 +1,28 @@ + + + + +About + + +

About This Content

+ +

June 5, 2007

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/org.eclipse.xtext.xtext.ide/build.gradle b/org.eclipse.xtext.xtext.ide/build.gradle new file mode 100644 index 000000000..9b0da904f --- /dev/null +++ b/org.eclipse.xtext.xtext.ide/build.gradle @@ -0,0 +1,6 @@ +ext.title = 'Xtext Language IDE Support' +description = 'Xtext Language generic IDE support.' + +dependencies { + compile project(':org.eclipse.xtext.ide') +} diff --git a/releng/p2/category.xml b/releng/p2/category.xml index 7207daa84..1fd600813 100644 --- a/releng/p2/category.xml +++ b/releng/p2/category.xml @@ -54,6 +54,12 @@ + + + + + + diff --git a/releng/pom.xml b/releng/pom.xml index 593b80901..6e69bd63c 100644 --- a/releng/pom.xml +++ b/releng/pom.xml @@ -134,6 +134,17 @@ 2.11.0-SNAPSHOT sources + + org.eclipse.xtext + org.eclipse.xtext.xtext.ide + 2.11.0-SNAPSHOT + + + org.eclipse.xtext + org.eclipse.xtext.xtext.ide + 2.11.0-SNAPSHOT + sources + org.eclipse.xtext org.eclipse.xtext.xtext.wizard diff --git a/settings.gradle b/settings.gradle index 0cef42b0c..33e92b7ca 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,6 +4,7 @@ include 'org.eclipse.xtext' include 'org.eclipse.xtext.ide' include 'org.eclipse.xtext.util' include 'org.eclipse.xtext.xtext.generator' +include 'org.eclipse.xtext.xtext.ide' include 'org.eclipse.xtext.xtext.wizard' include 'org.eclipse.xtext.testing' include 'org.eclipse.xtext.tests'