Re: [tycho-user] p2-Site to provide build artifacts
Hello Felix, You might want to have a look at "Package Drone" [1][2]. I am not sure if it provides all that you need, but it is an extensible open source project ;-) The basic idea is to deploy from...
View ArticleRe: [tycho-user] p2-Site to provide build artifacts
If you're using Nexus, you can use the Nexus P2 plugin that is able to convert any Maven repo to a P2 repo. I'm using it for my IDE build infra. You just need to deploy to Nexus through MavenÂJeffOn...
View ArticleRe: [tycho-user] [EXTERNAL] Re: p2-Site to provide build artifacts
The P2 Metadata Genarator doesnât include filters on p2.inf requirements, which we use to declare a runtime deployment dependency from host bundle to native fragment. [1] -...
View Article[tycho-user] Custom build steps that work in Eclipse and Tycho?
Greetings,Iâm using EBean ORM within one my plug-ins which requires some Enhancement to be done to the persistent beans. This can be usually done at runtime, however it requires the JDK, which may not...
View ArticleRe: [tycho-user] Custom build steps that work in Eclipse and Tycho?
Assuming your ORM has a Maven plug-in, I recommend you to configure it in the pom.xml files. Then when you import the projects in Eclipse using m2e, m2e will perform some analysis of the Maven...
View ArticleRe: [tycho-user] Custom build steps that work in Eclipse and Tycho?
I do not recommend using build-time class instrumentation inside Eclipse workspace, especially together with m2e. If your ORM solution comes with Eclipse integration, you may be fine using that, but do...
View ArticleRe: [tycho-user] Custom build steps that work in Eclipse and Tycho?
Thanks, Pascal.So currently the plug-in is a “Eclipse Plug-in Project” and not an “m2e Project”. It has a pom.xml, so yes I could run the ORM enhancement there, but not sure how that would effect...
View ArticleRe: [tycho-user] Custom build steps that work in Eclipse and Tycho?
Hi Igor,I’d agree that that’s not what I want to do. I’d rather use the maven or ant enhancers for the ORM to generate the classes at build time only.I did just find an eclipse plug-in for the ORM...
View Article[tycho-user] Tycho UI tests failure with 4.4 platform
I'm not sure this is entirely related to Tycho, but:I have a tests plugin that runs Workbench/UI tests. Everything was working when when I had the 4.3 version of the "Eclipse Plaftorm" feature in the...
View ArticleRe: [tycho-user] Tycho UI tests failure with 4.4 platform
I think this question should be directed to Platform UI developers. From what I remember, several implied dependencies (i.e., not explicitly declared but assumed to be available) were introduced in 4.4...
View Article[tycho-user] Eclipse Luna: Tycho framework error for demo applications
Hey Guys I am using a (Mac + Eclipse Luna) trying to run the https://github.com/eclipse/tycho-demo itp01 project. The code runs but is throwing few exceptions (console is pasted below), Any ideas...
View ArticleRe: [tycho-user] Eclipse Luna: Tycho framework error for demo applications
Seems you've got a mess wit SLF4J which seems to be provided by two different bundles: slf4j.api and org.slf4j.apiRegardsJeff MAURYOn Sun, Feb 15, 2015 at 12:15 AM, Ferosh Jacob...
View ArticleRe: [tycho-user] Eclipse Luna: Tycho framework error for demo applications
Hi, can you give the last steps required to reproduce the issue? Jens On 02/15/2015 12:15 AM, Ferosh Jacob wrote: Hey Guys I am using a (Mac + Eclipse Luna) trying to run the...
View ArticleRe: [tycho-user] Tycho UI tests failure with 4.4 platform
Luna new and noteworthy had a list of necessary bundles to be started for Eclipse products, and the event service is included: https://www.eclipse.org/eclipse/news/4.4/eclipse-news-part4.php. Search...
View ArticleRe: [tycho-user] Eclipse Luna: Tycho framework error for demo applications
Hey Jens Thank you for helping me with this. The details are given below. Operating system, OSX Eclipse – Eclipse Luna PDE Steps below git clone https://github.com/eclipse/tycho-demo...
View ArticleRe: [tycho-user] Eclipse Luna: Tycho framework error for demo applications
Hello Ferosh, so you actually don't use Tycho, but launch it using Eclipse PDE, from the IDE? In this case, which Target Platform do you use? Jens On 02/16/2015 11:25 AM, Ferosh Jacob wrote: Hey Jens...
View ArticleRe: [tycho-user] Eclipse Luna: Tycho framework error for demo applications
You mean? Eclipse Luna, Java 1.7 Thanks Ferosh From: Jens Reimann <jens.reimann@xxxxxxxxxxxxxxx> Organization: IBH SYSTEMS GmbH Reply-To: Tycho user list <tycho-user@xxxxxxxxxxx> Date:...
View Article[tycho-user] Question on Maven/Tycho target mechanism using .target file
Hello all, I have a problem with the Maven/Tycho mechanism to resolve a .target file. I followed the information on https://wiki.eclipse.org/Tycho/Target_Platform#Target_files, but do not get the...
View ArticleRe: [tycho-user] Question on Maven/Tycho target mechanism using .target file
Disclaimer: I am a tycho newbie … I think you need to add a classifier tag. Also be sure that the artifactId tag has the name of the project that contains the target file specified in the...
View ArticleRe: [tycho-user] Question on Maven/Tycho target mechanism using .target file
relativePath is not supported for target GAVs, version is required. you need to specify the full GAV. This kind of incomplete configuration should actually fail the build with a clear error message:...
View Article