Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] Building eclipse from source

On Mon, 2023-03-20 at 09:06 +0200, Aleksandar Kurtakov wrote:
> > I follow the steps in the link and I eventually get an error about
> > line 81 in 
> > eclipse.platform.releng.aggregator4.7/eclipse.platform.swt.binaries
> > /bundles/binaries-parent/pom.xml
> > about this ${toolsJar} variable, it needs to be an absolute path.
> > I'm not sure what to do about it. I changed ${toolsJar} to
> > /usr/bin/jar, and then I get an error about 
> > Caused by: java.lang.IllegalArgumentException: bundleLocation not
> > found:
> > /home/bkeys/.m2/repository/org/eclipse/orbit/bundles/org.apache.ant
> > /1.10.12-SNAPSHOT/org.apache.ant-1.10.12-SNAPSHOT.jar

This looks a lot like https://github.com/eclipse-tycho/tycho/issues/725https://github.com/eclipse-tycho/tycho/blob/master/RELEASE_NOTES.md#caution-when-switching-between-tycho-versions
) . You might be able to solve it by just using something like -
Dmaven.repo.local=$(pwd)/.m2 so that the project using the old Tycho
version is isolated from location of newer one.

Cheers,
Roland Grunberg



Back to the top