Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 98c7ffa

Browse files
Added au.com.forge.felix.config.init.awt property that initialises AWT if on MacOS X and set to true (patch by [email protected]).
Added support for a Apache Felix main "project" so that bundle does not need to be part of target platform (patch by [email protected]). Bumped eclipse_pde_launcher and eclipse_pde_launcher-4.2 to v0.2.2. Bumped launch_configuration to v0.2.1. Bumped feature to v0.2.2.
1 parent f71c36d commit 98c7ffa

File tree

13 files changed

+606
-194
lines changed

13 files changed

+606
-194
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
4-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5-
<classpathentry kind="src" path="src/"/>
6-
<classpathentry kind="output" path="bin"/>
7-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
4+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5+
<classpathentry kind="src" path="src/"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</classpath>
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
#Mon Apr 05 13:56:54 EST 2010
2-
eclipse.preferences.version=1
3-
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
4-
org.eclipse.jdt.core.compiler.compliance=1.4
5-
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
6-
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
7-
org.eclipse.jdt.core.compiler.source=1.3
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.5
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.5

au.com.forge.felix.eclipse.launch_configuration/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.2.1
2+
3+
* Add support to debug a Felix main bundle that is in the PDE as a project, removing need to install it into the target platform in JAR form (thanks for patch from [email protected]).
4+
15
0.2.0
26

37
* Added launch configuration support to launch Felix 4.2+ variants.

au.com.forge.felix.eclipse.launch_configuration/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Eclipse PDE Felix Plugin
44
Bundle-SymbolicName: au.com.forge.felix.eclipse.launch_configuration;singleton:=true
5-
Bundle-Version: 0.2.0
5+
Bundle-Version: 0.2.2
66
Bundle-Vendor: Forge Research (http://www.forge.com.au)
77
Require-Bundle: org.eclipse.jdt.core;bundle-version="3.4.0",
88
org.eclipse.pde;bundle-version="3.4.0",
@@ -13,4 +13,4 @@ Require-Bundle: org.eclipse.jdt.core;bundle-version="3.4.0",
1313
org.eclipse.jdt.launching;bundle-version="3.4.1",
1414
org.eclipse.core.filesystem;bundle-version="1.2.1"
1515
Bundle-ActivationPolicy: lazy
16-
Bundle-RequiredExecutionEnvironment: J2SE-1.4
16+
Bundle-RequiredExecutionEnvironment: J2SE-1.5

0 commit comments

Comments
 (0)