mirror of https://github.com/apache/lucene.git
LUCENE-9170: Use HTTPS when downloading wagon-ssh artifacts
Co-authored-by: Ishan Chattopadhyaya <ishan@apache.org>
This commit is contained in:
parent
1ca7067a81
commit
46d011645c
|
@ -238,6 +238,7 @@
|
|||
<property name="m2.repository.private.key" value="${user.home}/.ssh/id_dsa"/>
|
||||
<property name="m2.repository.id" value="local"/>
|
||||
<property name="m2.credentials.prompt" value="true"/>
|
||||
<property name="maven.repository.id" value="remote"/>
|
||||
|
||||
<property name="tests.workDir" location="${build.dir}/test"/>
|
||||
<property name="junit.output.dir" location="${build.dir}/test"/>
|
||||
|
@ -598,9 +599,13 @@
|
|||
<attribute name="pom.xml"/>
|
||||
<attribute name="jar.file" default="${dist.jar.dir.prefix}-${version}/${dist.jar.dir.suffix}/${final.name}.jar"/>
|
||||
<sequential>
|
||||
<artifact:install-provider artifactId="wagon-ssh" version="1.0-beta-7"/>
|
||||
<artifact:install-provider artifactId="wagon-ssh" version="1.0-beta-7">
|
||||
<remoteRepository id="${maven.repository.id}" url="${ivy_bootstrap_url1}" />
|
||||
</artifact:install-provider>
|
||||
<parent-poms/>
|
||||
<artifact:pom id="maven.project" file="@{pom.xml}"/>
|
||||
<artifact:pom id="maven.project" file="@{pom.xml}">
|
||||
<remoteRepository id="${maven.repository.id}" url="${ivy_bootstrap_url1}" />
|
||||
</artifact:pom>
|
||||
<artifact:deploy file="@{jar.file}">
|
||||
<artifact-attachments/>
|
||||
<remoteRepository id="${m2.repository.id}" url="${m2.repository.url}">
|
||||
|
|
Loading…
Reference in New Issue