Skip to main content

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

Hey Igor!!

Tks a lot, man!! it was exactly that!
Now I can keep going...

tks! tks! tks!

On Tue, Nov 22, 2011 at 12:13 AM, Igor Fedorenko <igor@xxxxxxxxxxxxxx> wrote:
Tycho cannot know what fragment bundles may be required to compile your
project. Use build.properties jars.extra.classpath to make sure desired
fragment is used, something like

jars.extra.classpath=platform:/plugin/<fragment-symbolic-name>

--
Regards,
Igor


On 11-11-21 8:02 PM, Paulo Freitas wrote:
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


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top