Re: [tycho-user] Local eclipse instance
Hi all, I put the same folders with p2 repositories into Windows folder and into Linux folder and made such changes in my pom.xml file: <repository> <id>eclipse-neon</id>...
View ArticleRe: [tycho-user] Local eclipse instance
Re: unsupported version of java: http://stackoverflow.com/questions/22489398/unsupported-major-minor-version-52-0 Make sure you're using JDK 8 for all platforms. On Wed, Apr 12, 2017 at 12:19 PM,...
View ArticleRe: [tycho-user] New update site from a old one scenario
When building the eclipse-repository make sure you have a reference to the mirror site in the pom. https://maven.apache.org/pom.html#Repositories For a p2 site, try something like this (note the layout...
View ArticleRe: [tycho-user] Tycho doesn't recognize product ID. Unable to create RCP app...
The pom needs to specify eclipse-repository instead of eclipse-plugin. Answering to my own question in case someone else stumbles across this.ÂKhadyOn Tue, Apr 11, 2017 at 3:33 PM, khady lo seck...
View Article[tycho-user] Tycho can't find .product file ID specified under...
Trying to create .zip file of my rcp app in Maven Tycho. All projects were built with success except when I add the tycho-p2-director-plugin to materialize the product to get a .zip folder with the app...
View Article[tycho-user] Upgrading Tycho...
Greetings,Iâm in the process of trying to update our application to package with Neon, and then subsequently update the packaging such that it conforms to the spec provided for running on macOS. We are...
View ArticleRe: [tycho-user] Upgrading Tycho...
>Installation failed. >Cannot complete the install because one or more required items could not be found. > Software being installed: Sunflower Studio CE 1.0.0.201704182306...
View Article[tycho-user] 1.0 fails build with access restriction
Hi, I had a build of a plugin that uses DOM classes from rt.jar that was building fine with 0.26.0 but when I changed Tycho.version to 1.0.0 it started failing with the following error: [ERROR]...
View ArticleRe: [tycho-user] 1.0 fails build with access restriction
I assume you are accessing JDK internal packages. If you want to relax access restriction errors, you should be able to use...
View ArticleRe: [tycho-user] 1.0 fails build with access restriction
Thanks Jan for the info, You are right about compilerArgs, I switched to use that now, but unfortunately it didn't change the behavior, the following still works in 0.26.0 and fails in 1.0.0...
View ArticleRe: [tycho-user] 1.0 fails build with access restriction
if you have a small sample project that shows the problem, open a bug with steps to reproduce. off the top of my head I don't think there are changes in Tycho that could cause a different behaviour....
View ArticleRe: [tycho-user] 1.0 fails build with access restriction
did you check the useProjectSettings behaviour change announced in the release notes https://wiki.eclipse.org/Tycho/Release_Notes/1.0.0 Jan On 21.04.17, 16:52, "tycho-user-bounces@xxxxxxxxxxx on behalf...
View ArticleRe: [tycho-user] 1.0 fails build with access restriction
Excellent catch Jan, THANKS! That project had an old .settings folder with jdt compiler settings that seems to ask for Java 1.5 for some reason (attached for reference) Removing that fixed the issue....
View Article[tycho-user] Maven not generating .class files with delombok
Hello and thanks for adding me to the DL, I am working on a Maven Tycho project that uses delombok to deal with classes using lombok. It seems very odd that after a successful mvn clean and install...
View Article[tycho-user] Can tycho pull a 3rd party (non-osgi) jar into a bundle lib dir...
Hi,I have a plugin that needs a 3rd party (non-osgi) jar in its classpath. Currently the jar is in a lib folder. I now have to commit the plugin, but I don't want the .jar in git. Is there some magic...
View ArticleRe: [tycho-user] Can tycho pull a 3rd party (non-osgi) jar into a bundle lib...
one option is to use the maven-dependency-plugin:copy goal, see e.g. https://github.com/eclipse/tycho/blob/9969737355b3c7ef7db3e88961a3529214a0baa0/tycho-surefire/pom.xml#L59...
View ArticleRe: [tycho-user] Can tycho pull a 3rd party (non-osgi) jar into a bundle lib...
Okay I see. In this case, do you manage the bundle-classpath manifest entries manually or do you have another trick for that?On Mon, Apr 24, 2017 at 1:09 PM, Sievers, Jan <jan.sievers@xxxxxxx>...
View ArticleRe: [tycho-user] Can tycho pull a 3rd party (non-osgi) jar into a bundle lib...
Hi Felix, The maven dependency plugin let you specify the output directory where to store the copied/downlaoded resources (in the example pom Jan sent you, that is configured in one of the parent...
View Article[tycho-user] tycho-version-bump-plugin
Dear Tycho community, I am willing to use the tycho plugin tycho-version-bump-plugin to update my targetplatforms. But I do not find any documentation / example on how to do it. Do you have any good...
View ArticleRe: [tycho-user] tycho-version-bump-plugin
It seems that the following call works mvn org.eclipse.tycho.extras:tycho-version-bump-plugin:1.0.0:update-target -Dtarget=mytarget.target thanks De : tycho-user-bounces@xxxxxxxxxxx...
View Article