[tycho-user] Unzip Plugin milestone version 0.14.0 released
somewhat late, but for those that did not notice yet, Nexus Unzip Plugin milestone version 0.14.0 has been released. This milestone release ports the plugin to Nexus 2.8.x and 2.9.x, for details see...
View ArticleRe: [tycho-user] SWTBot + Tycho
Hi Mickael, Thank you for the information, I better understand. Our product builds now successfully with all the tests, we can enjoy the power of build automation now! Alain De :...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
I'm far from sure what is the right solution is, but I can tell you how we handle it with tycho 0.8, and they you can decide if you think this is a good solution Because we have both source and test in...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
Just to state the obvious, this setup does not provide any safeguards against (accidental) use of test dependencies in main code. The test dependencies will also get wired to the bundle at runtime if...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
Yes, inside Eclipse IDE you don't have any safeguards against uses of test dependencies, but when you build it with maven it will fail because the test dependencies is not available on class path for...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
Can you explain how main classpath is setup during command line build? If there is only one manifest and the manifest includes both main and test dependencies, I don't see how main classes won't be...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
We setup the build.properties to split the target main and test directory and control the build order, by compiling the main source first and second the test code. If main code referrers to test code...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
I meant binary dependencies. In plain maven projects it is not possible to reference test-scoped dependencies from sources under src/main/java. Tycho should behave the same. "Leaking" test dependencies...
View ArticleRe: [tycho-user] Fwd: Splitting source and test artifacts
I hear you and I agree that Tycho should respect the test-scoped dependencies But I want to point out one last thing, and then I rest my case :) if you have chosen a setup like we have, with main and...
View Article[tycho-user] Building "shaded" JARs with Tycho?
Hi, I need some advice on building "shaded" JARs with Tycho, i.e., a JAR that contains all (or most) of its dependencies. (FYI: The JAR in question is a FindBugs plugin [1] that can also be used as an...
View ArticleRe: [tycho-user] Building "shaded" JARs with Tycho?
For m2e, we do this using maven-bundle-plugin <Embed-Dependency> directive to do this, then let m2e/tycho integration make results visible to PDE/IDE. This has advantage of full m2e support,...
View ArticleRe: [tycho-user] Building "shaded" JARs with Tycho?
Hi Igor, > For m2e, we do this using maven-bundle-plugin <Embed-Dependency> > directive to do this, then let m2e/tycho integration make results > visible to PDE/IDE. This has advantage...
View ArticleRe: [tycho-user] Building "shaded" JARs with Tycho?
We solve it by doing two Maven runs in the same Jenkins job. Yes, they still communicate through the local repository, but it's still a job local one./AndreasOn 19 September 2014 11:58, Andreas Sewe...
View ArticleRe: [tycho-user] Building "shaded" JARs with Tycho?
It does not have to be a local repository, you can deploy the artifacts to a maven repository, too. -- Regards, Igor On 2014-09-19, 6:50, Andreas Magnusson wrote: We solve it by doing two Maven runs in...
View ArticleRe: [tycho-user] [equinox-dev] qualifiers in the tycho build
cross-posting to tycho-user see general discussion https://bugs.eclipse.org/bugs/show_bug.cgi?id=440157#c5 . One thing you can do however is to configure the "qualifier" (4th digit) replacement during...
View Article[tycho-user] Dynamically add resources to plugin
Hi, in my tycho build I want to add resources to plugins dynamically. This is done triggering a Javadoc execution: <execution> <id>build-docs</id>...
View ArticleRe: [tycho-user] unit tests hanging with 0.22.0-SNAPSHOT
if the test hangs, full debug log may help but full JVM stacktrace obtained e.g. using jstack would probably be more interesting. Note that Tycho 0.22.0-SNAPSHOT upgraded to latest surefire version...
View Articlewhat about binary-only changes?">[tycho-user] "Reproducible Version Qualifiers" -> what about binary-only...
Hi,According to https://wiki.eclipse.org/Tycho/Reproducible_Version_Qualifiers, only source code changes trigger the build of a new artifact version of a project. This concept leads to problems in...
View ArticleRe: [tycho-user] Dynamically add resources to plugin
did you try the maven build helper plugin ?JeffOn Wed, Sep 24, 2014 at 8:52 AM, <Christian.Pontesegger@xxxxxxxxxxxx> wrote: Hi, Â in my tycho build I want to add resources to plugins dynamically....
View Articlewhat about binary-only changes?">Re: [tycho-user] "Reproducible Version Qualifiers" -> what about binary-only...
Here is a relevant quote from the wiki you linked "Generated artifacts are then compared to artifacts available from configured baseline repositories. If baseline repositories contain artifacts with...
View Article