Re: [tycho-user] building feature error on dependency
Shame on me, I had it in the original project and forget to include the target-platform-configuration in my sample.Thanks for this gently reminder, you were all very helpful.I can move on the part...
View Article[tycho-user] building eclipse-repository error on dependency
Thanks to your help, I fixed my mistake in my sandbox.feature.The goal is still to produce an eclipse-repository from this built feature that I'll then deploy on Artifactory.The project structure is as...
View ArticleRe: [tycho-user] building eclipse-repository error on dependency
Hi Thierry, not looked into the details of your setup, but I see a typo in your category.xml. The âidâ should be âsandbox.featureâ not âsanbox.featureâ, you missed the âdâ. hth martin Von:...
View ArticleRe: [tycho-user] building eclipse-repository error on dependency
you are right. I fixed once more a typo.Looks like I loose every time a bit of credibility ;)I have another error now and it seems I need to read again documentation on the way to build a...
View ArticleRe: [tycho-user] Building product with feature and feature individually
Hi Lutz, why do you need to reference the product repo in the feature? Do you know the Tycho Demo Project [1]? Maybe that helps. I can also provide a working example if you like which builds a...
View ArticleRe: [tycho-user] Building product with feature and feature individually
Martin,The feature depends on other features in the product, so they need to be resolved during the build. The feature is developed by someone else and I want to avoid that they have to build the whole...
View ArticleRe: [tycho-user] Packaging type for EMF standalone (CLI) app?
Here is a possible way to do it: * Create your application as an "eclipse-product" (so you get all the happiness provided by p2) * Create a module that would be build after your eclipse-product and...
View ArticleRe: [tycho-user] Building product with feature and feature individually
Hi, There are many ways to build different features, here is what I am using to build an Eclipse RCP with many different features and plugins which are independent from each other. All pom files...
View ArticleRe: [tycho-user] Building product with feature and feature individually
Hi, Sorry, I forgot to add the link to the git repo you can find my example: https://github.com/mschreiber/org.example There are many ways to build different features, here is what I am using to build...
View Article[tycho-user] Tycho surefire throws PluginExecutionException
Tycho version : 0.22Java version : 1.8_40 eaHello,I have a problem with my test plugins during a Tycho build. The project compiles, and I can execute the tests from within the IDE (with PDE), but...
View ArticleRe: [tycho-user] Tycho surefire throws PluginExecutionException
there is a known issue when moving the tycho-surefire test execution from phase "integration-test" to phase "test": https://bugs.eclipse.org/bugs/show_bug.cgi?id=440094 just run your tests in phase...
View Article[tycho-user] Tycho-p2-plugin question
Dear all,I just came across the tycho-p2-plugin in a couple of examples. It seems there are two use cases, one has to do with validation against baseline repositories (whatever that means) and the...
View Article[tycho-user] conditionally skip eclipse product build
Hi all,I have noticed that during our Tycho builds the actual building of the Eclipse product and update sites (handled by the Maven module with eclipse-repository packaging using the...
View ArticleRe: [tycho-user] conditionally skip eclipse product build
This is what I do for my Eclipse based product. Each commit will run Tycho for plugins and features (and tests, of course) only and on a daily basis, I build the product enabling the profileJeffOn Wed,...
View Article[tycho-user] Versions Maven Plugin and Tycho?
I recently happened across this collection of "maven functionality": http://mojo.codehaus.org/versions-maven-plugin/ Does anyone have any experience using these with Tycho builds? Do they "work"? I'm...
View ArticleRe: [tycho-user] Versions Maven Plugin and Tycho?
Hi David, I have used display-plugin-updates recently to update our plugins and it worked well. I used this simple command to display a summary: mvn versions:display-plugin-updates...
View ArticleRe: [tycho-user] Versions Maven Plugin and Tycho?
I'm afraid display-dependency-updates works with Maven 2 repositories so will not work in a Tycho environment where P2 repos are used.RegardsJeffOn Sat, Mar 14, 2015 at 5:02 PM, David M Williams...
View ArticleRe: [tycho-user] Tycho surefire throws PluginExecutionException
Hello,Okay moving to the default test phase apparently solved this problem. There is another one, though. The needed framework extension cannot be found :[ERROR] Failed to execute goal...
View ArticleRe: [tycho-user] Problems running tests with luna platform
I don't think you can add dependencies (mockito-all) from maven like that, it has to be an Eclipse plugin. I tried your example and added the mockito from Eclipse Orbit [1] and it works. See attached...
View ArticleRe: [tycho-user] Problems running tests with luna platform
The problem is that the mockito JAR you are referencing does need theÂorg.objenesis package which is not available on the Luna P2 repo.RegardsJeffOn Tue, Mar 17, 2015 at 12:18 AM, Marc-Andrà Laperle...
View Article