Re: [tycho-user] Java Annotations problem
Hi https://repo.eclipse.org/ seems to be the way to go. Maven central will never be up to date. Unfortunately it makes no difference, but at least I have the same plugins interactively and cached. The...
View Article[tycho-user] Multiple testclass invocations per plugin
Hi I'm migrating from Buckminster where each "junit ..." line ran a test. I can do similar things with SureFire, but I'm stuck when it comes to running two test invocations for a plugin. (Since EMF...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi Ed,Think you can have several executions on surefire plugin.ÂÂÂÂÂ <plugin>ÂÂÂÂÂÂÂ <groupId>org.eclipse.tycho</groupId>ÂÂÂÂÂÂÂ...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi Thanks. I was looking for "execution" but there is no mention on the SureFile page or on Google. I need to read the documentation to understand your comments about defaults and selective execution....
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi,I support Bidon's answer.About the "execution" tag, it's not specific to Surefire but to the Maven POM model, which allows multiple execution of any Maven plugin. So you'll have to find plain Maven...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
On 10/13/17 3:12 PM, Bidon Gamelle wrote: > Note that the default execution will still be executed. Either you can > use the default execution and one specific execution, or set skipTests > to...
View ArticleRe: [tycho-user] Java Annotations problem
..classpath is an IDE-specific and derived file so it's not taken into account by the headless Tycho build (as opposed to e.g. build.properties). tycho is using the batch compiler CLI so you should be...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi Thanks. Spot on tip. My root POM had a default surefire configuration giving me a default test that did not co-exist well with the new explicit tests. Next challenge: how to stop the two sets of...
View ArticleRe: [tycho-user] Java Annotations problem
Hi Thanks. JDT https://bugs.eclipse.org/bugs/show_bug.cgi?id=526011 raised. ÂÂÂ Regards ÂÂÂ ÂÂÂ Ed Willink On 13/10/2017 16:22, Sievers, Jan wrote: ..classpath is an IDE-specific and derived file so...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi (The reportsDirectory provides separation of repeated names.) But my original problem is not solved. I need multiple launches of one testClass corresponding to a Buckminster launch of a JUnit...
View Article[tycho-user] Multiple testclass invocations per plugin
Hi,MickaÃl Istria pointed me to this thread mailÂhttps://dev.eclipse.org/mhonarc/lists/tycho-user/msg07794.html I just registered to the mailing-list and so not sure that this mail will be added to the...
View Article[tycho-user] How to extend tycho-osgi-runtime via TychoOsgiRuntimeArtifacts?
Hello everybody,I want tycho to include my osgi-bundle into its runtime. (It registers a custom url via org.osgi.service.url.URLStreamHandlerService.)It does not work.What a tried so far:1. I wrote the...
View ArticleRe: [tycho-user] How to extend tycho-osgi-runtime via TychoOsgiRuntimeArtifacts?
Looks like the OSGi runtime should be extensible but I never tried this. You may have to add it as a maven core build extension so the classloader sees it, i.e....
View ArticleRe: [tycho-user] How to extend tycho-osgi-runtime via TychoOsgiRuntimeArtifacts?
another thing is to make sure the plexus descriptors are generated, like in https://github.com/eclipse/tycho/blob/5951a62696123bff26cead593ca54d7b124a70e6/pom.xml#L365-L377 otherwise dependency...
View ArticleRe: [tycho-user] How to extend tycho-osgi-runtime via TychoOsgiRuntimeArtifacts?
Hello Jan,thanks for your answers.ÂI followed your advices/suggestions and get the following outcome:====================== CUT HERE =======================1) No implementation for...
View ArticleRe: [tycho-user] How to extend tycho-osgi-runtime via TychoOsgiRuntimeArtifacts?
I never tried extending the tycho OSGi runtime and there are no tests covering this scenario, so I can't promise much. But yes, a bug with a sample project would help focus the discussion Regards Jan...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
Hi After considerable pain attempting to empathize with magic nothing happenings, I can now be quite confident that while the correct answer is indeed use maven-surefire-plugin to run standalone...
View ArticleRe: [tycho-user] how to force tycho to use a specific set of plugins from the...
Hi,I don't really see how that would helpWhat i need is that i can say in the parent pom of my git repo (and i have about 10 repo's that will build 1 product)What version it really should use of the...
View ArticleRe: [tycho-user] Multiple testclass invocations per plugin
it turns out you can run both maven-surefire-plugin and tycho-surefire-plugin together. I added an FAQ...
View ArticleRe: [tycho-user] how to force tycho to use a specific set of plugins from the...
Hi,thx for that link, the thing is that that "locally_build_artificats" is not directly usefull to meBut then i did see the the section just below...
View Article