Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Compilation failure

Hello mailing list,

I'm building a rap project with Tycho and I'm currently facing a compilation issue with org.eclipse.rwt.lifecycle.* imports that I do in my code.

Here's my manifest:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Wind Faces Mask
Bundle-SymbolicName: wind-faces.rap.mask;singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: com.maisha.wind.faces.rap.mask.Activator
Require-Bundle: org.eclipse.rap.ui;bundle-version="1.4.0",org.eclipse.rap.rwt;bundle-version="[1.4.0,2.0.0)";visibility:=reexport
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.maisha.wind.faces.rap.internal.mask.maskedtextkit,
 com.maisha.wind.faces.rap.mask
Import-Package: org.eclipse.rwt.lifecycle

And this is the message I get:

/media/drive/dev/java/workspaces/wind-rap/wind-faces.rap.mask/src/com/maisha/wind/faces/rap/internal/mask/maskedtextkit/MaskedTextLCA.java (at line 6):[-1,-1]
[ERROR] import org.eclipse.rwt.lifecycle.q;
[ERROR] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[ERROR] The import org.eclipse.rwt.lifecycle.ControlLCAUtil cannot be resolved


Obviously everything is fine in my workspace, but I'm not able to compile this bundle with Tycho. 
The class I'm referencing is placed in a fragment of org.eclipse.rap.rwt bundle. This bundle is included in my target platform, but seems Tycho is not able to find this class in org.eclipse.rap.rwt's fragment.

Please, help me. I'm stuck. Googled everywhere and could not find a clue. 
Let me know if more information is needed.

Tks in advance, and sorry for possible english mistakes also in advance

Back to the top