Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LUCENE-9266 Update smoke test for gradle #1333

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev-tools/scripts/smokeTestRelease.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
# TODO: clean this up to not be a list of modules that we must maintain
extras = ('analysis', 'backward-codecs', 'benchmark', 'classification', 'codecs', 'core', 'demo', 'docs', 'expressions', 'facet', 'grouping', 'highlighter', 'join', 'luke', 'memory', 'misc', 'monitor', 'queries', 'queryparser', 'replicator', 'sandbox', 'spatial-extras', 'spatial3d', 'suggest', 'test-framework', 'licenses')
if isSrc:
extras += ('build.xml', 'common-build.xml', 'module-build.xml', 'top-level-ivy-settings.xml', 'default-nested-ivy-settings.xml', 'ivy-versions.properties', 'ivy-ignore-conflicts.properties', 'version.properties', 'tools', 'site', 'dev-docs')
extras += ('build.xml', 'build.gradle', 'common-build.xml', 'module-build.xml', 'top-level-ivy-settings.xml', 'default-nested-ivy-settings.xml', 'ivy-versions.properties', 'ivy-ignore-conflicts.properties', 'version.properties', 'tools', 'site', 'dev-docs')
else:
extras = ()

Expand Down
9 changes: 7 additions & 2 deletions lucene/common-build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand Down Expand Up @@ -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}" />
madrob marked this conversation as resolved.
Show resolved Hide resolved
</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}">
Expand Down