On 8/22/2024 17:55, Shawn Heisey wrote:
Then you will need these commands, starting from the root of the checkout:
ant ivy-bootstrap
cd solr
ant clean package
I can confirm that Java 17 does NOT work.
I installed Java 11 (it was missing on my Windows 11 machine) and added
this command before trying the final command:
set JAVA_HOME=C:\Program Files\Java\jdk-11
But it actually still failed. It was trying to download artifacts from
https://maven.restlet.com but that web server is using an expired
certificate.
I managed to fix this by changing the following file:
lucene/default-nested-ivy-settings.xml
In that file, I replaced three instances of "maven.restlet.com" with
"maven.restlet.talend.com".
Thanks,
Shawn