bug4811: added elemental2.[core|dom|promise] in an "elemental2" project;

this to enable things such as access to FileList and File from FileUpload input elements
This commit is contained in:
Axel Uhl
2021-01-18 18:25:30 +01:00
parent 1b3c1cddf1
commit 3d89837122
16 changed files with 155 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/base-1.0.0.jar"/>
<classpathentry exported="true" kind="lib" path="lib/elemental2-core-1.1.0.jar"/>
<classpathentry exported="true" kind="lib" path="lib/elemental2-dom-1.1.0.jar"/>
<classpathentry exported="true" kind="lib" path="lib/elemental2-promise-1.1.0.jar"/>
<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="output" path="bin"/>
</classpath>
+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>elemental2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
+8
View File
@@ -0,0 +1,8 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
+3
View File
@@ -0,0 +1,3 @@
eclipse.preferences.version=1
pluginProject.extensions=false
resolve.requirebundle=false
+17
View File
@@ -0,0 +1,17 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Elemental2
Bundle-SymbolicName: elemental2
Bundle-Version: 1.1.0.qualifier
Automatic-Module-Name: elemental2
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: lib/elemental2-core-1.1.0.jar,
lib/elemental2-dom-1.1.0.jar,
lib/elemental2-promise-1.1.0.jar,
.,
lib/base-1.0.0.jar
Export-Package: com.google.gwt.core.client,
elemental2.core,
elemental2.dom,
elemental2.promise,
jsinterop.base
+6
View File
@@ -0,0 +1,6 @@
bin.includes = META-INF/,\
.,\
lib/elemental2-core-1.1.0.jar,\
lib/elemental2-dom-1.1.0.jar,\
lib/elemental2-promise-1.1.0.jar,\
lib/base-1.0.0.jar
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>root</artifactId>
<groupId>com.sap.sailing</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>elemental2</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>