Stand 19.12.2018
This commit is contained in:
parent
26c8bdab85
commit
0e5c3216d0
@ -3,6 +3,6 @@
|
|||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||||
<classpathentry kind="src" path="src"/>
|
<classpathentry kind="src" path="src"/>
|
||||||
<classpathentry kind="lib" path="/JavaCompilerCoreOsgiInline/target/JavaCompilerCoreOsgiInline-0.1.jar"/>
|
<classpathentry exported="true" kind="lib" path="bin" sourcepath="bin"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
@ -1,22 +1,23 @@
|
|||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: JavaCompilerPlugin.Plugin
|
Bundle-Name: TypinferenzPlugin
|
||||||
Bundle-SymbolicName: JavaCompilerPlugin.Plugin;singleton:=true
|
Bundle-SymbolicName: TypinferenzPlugin;singleton:=true
|
||||||
Bundle-Version: 0.1.0.qualifier
|
Bundle-Version: 0.1.0.qualifier
|
||||||
Bundle-Vendor: de.dhbwstuttgart
|
Bundle-Vendor: de.dhbwstuttgart
|
||||||
|
Bundle-Activator: typinferenzplugin.Activator
|
||||||
|
Require-Bundle: org.eclipse.ui,
|
||||||
|
org.eclipse.core.runtime,
|
||||||
|
org.eclipse.jface.text,
|
||||||
|
org.eclipse.ui.editors,
|
||||||
|
org.eclipse.ui.workbench,
|
||||||
|
org.eclipse.core.resources,
|
||||||
|
org.eclipse.ui.ide,
|
||||||
|
org.eclipse.ui.views,
|
||||||
|
org.eclipse.equinox.ds; visibility:=reexport,
|
||||||
|
de.dhbwstuttgart.JavaCompilerCoreOsgi
|
||||||
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Bundle-ClassPath: .,
|
Bundle-ClassPath: .,
|
||||||
bin
|
bin
|
||||||
Automatic-Module-Name: JavaCompilerPlugin.Plugin;singleton:=true
|
|
||||||
Require-Bundle: org.eclipse.ui,
|
|
||||||
org.eclipse.core.runtime,
|
|
||||||
org.eclipse.jface.text,
|
|
||||||
org.eclipse.ui.editors,
|
|
||||||
org.eclipse.ui.workbench,
|
|
||||||
org.eclipse.core.resources,
|
|
||||||
org.eclipse.ui.ide,
|
|
||||||
org.eclipse.ui.views,
|
|
||||||
de.dhbwstuttgart.JavaCompilerCoreOsgi
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-9
|
|
||||||
Provide-Capability: osgi.ee;osgi.ee="JavaSE";version:List="1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7,1.8"
|
Provide-Capability: osgi.ee;osgi.ee="JavaSE";version:List="1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7,1.8"
|
||||||
Bundle-Activator: typinferenzplugin.Activator
|
Automatic-Module-Name: TypinferenzPlugin
|
||||||
|
@ -1,17 +1,9 @@
|
|||||||
source.. = src/
|
bin.includes = plugin.xml,\
|
||||||
output.. = bin/
|
|
||||||
bin.includes = src/,\
|
|
||||||
plugin.xml,\
|
|
||||||
icons/,\
|
|
||||||
build.properties,\
|
|
||||||
META-INF/,\
|
META-INF/,\
|
||||||
.classpath,\
|
.,\
|
||||||
.project,\
|
|
||||||
bin/
|
|
||||||
src.includes = src/,\
|
|
||||||
icons/,\
|
icons/,\
|
||||||
build.properties,\
|
src/,\
|
||||||
META-INF/,\
|
bin/,\
|
||||||
.classpath,\
|
build.properties
|
||||||
.project,\
|
src.includes = src/
|
||||||
bin/
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<?eclipse version="3.4"?>
|
<?eclipse version="3.4"?>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
||||||
<!-- Jav-Editor: -->
|
<!-- Jav-Editor: -->
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.editors">
|
point="org.eclipse.ui.editors">
|
||||||
<editor
|
<editor
|
||||||
@ -16,19 +16,19 @@
|
|||||||
</editor>
|
</editor>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
<!-- Marker
|
<!-- Marker
|
||||||
Tutorial dazu: http://cubussapiens.hu/2011/05/custom-markers-and-annotations-the-bright-side-of-eclipse/
|
Tutorial dazu: http://cubussapiens.hu/2011/05/custom-markers-and-annotations-the-bright-side-of-eclipse/
|
||||||
-->
|
-->
|
||||||
<extension
|
<extension
|
||||||
id="typinferenzplugin.replacemarker"
|
id="typinferenzplugin.replacemarker"
|
||||||
name="TypeReplaceMarker"
|
name="TypeReplaceMarker"
|
||||||
point="org.eclipse.core.resources.markers">
|
point="org.eclipse.core.resources.markers">
|
||||||
<super type="org.eclipse.core.resources.problemmarker" />
|
<super type="org.eclipse.core.resources.problemmarker" />
|
||||||
<super type="org.eclipse.core.resources.textmarker" />
|
<super type="org.eclipse.core.resources.textmarker" />
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
<!-- Src: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fextension-points%2Forg_eclipse_ui_editors_annotationTypes.html -->
|
<!-- Src: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fextension-points%2Forg_eclipse_ui_editors_annotationTypes.html -->
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.editors.annotationTypes">
|
point="org.eclipse.ui.editors.annotationTypes">
|
||||||
<type
|
<type
|
||||||
name="typinferenzplugin.annotation"
|
name="typinferenzplugin.annotation"
|
||||||
@ -69,8 +69,8 @@
|
|||||||
</specification>
|
</specification>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
<!-- ExtensionPoint für die QuickFixes der ReplaceMarker Quelle: http://wiki.eclipse.org/FAQ_How_do_I_implement_Quick_Fixes_for_my_own_language%3F -->
|
<!-- ExtensionPoint für die QuickFixes der ReplaceMarker Quelle: http://wiki.eclipse.org/FAQ_How_do_I_implement_Quick_Fixes_for_my_own_language%3F -->
|
||||||
<extension point="org.eclipse.ui.ide.markerResolution">
|
<extension point="org.eclipse.ui.ide.markerResolution">
|
||||||
<markerResolutionGenerator
|
<markerResolutionGenerator
|
||||||
markerType="typinferenzplugin.replacemarker"
|
markerType="typinferenzplugin.replacemarker"
|
||||||
class="typinferenzplugin.marker.QuickFixer"/>
|
class="typinferenzplugin.marker.QuickFixer"/>
|
||||||
|
@ -16,18 +16,18 @@
|
|||||||
[Enter License Description here.]
|
[Enter License Description here.]
|
||||||
</license>
|
</license>
|
||||||
|
|
||||||
<plugin
|
|
||||||
id="JavaCompilerPlugin.Plugin"
|
|
||||||
download-size="0"
|
|
||||||
install-size="0"
|
|
||||||
version="0.0.0"
|
|
||||||
unpack="false"/>
|
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="de.dhbwstuttgart.JavaCompilerCoreOsgi"
|
id="de.dhbwstuttgart.JavaCompilerCoreOsgi"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.1.0"
|
version="0.1.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="TypinferenzPlugin"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
</feature>
|
</feature>
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
<project>
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>de.dhbwstuttgart</groupId>
|
|
||||||
<artifactId>JavaCompilerPlugin</artifactId>
|
<artifactId>JavaCompilerPlugin</artifactId>
|
||||||
<version>0.1.0-SNAPSHOT</version>
|
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>de.dhbwstuttgart</groupId>
|
<groupId>de.dhbwstuttgart</groupId>
|
||||||
|
Loading…
Reference in New Issue
Block a user