You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2018/03/19 14:38:06 UTC

lucene-solr:branch_7_3: LUCENE-8155: Fix Solr example with Java 9 (was a problem when reverting an old commit)

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_3 3e8f539f3 -> 0977743ae


LUCENE-8155: Fix Solr example with Java 9 (was a problem when reverting an old commit)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/0977743a
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/0977743a
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/0977743a

Branch: refs/heads/branch_7_3
Commit: 0977743aeb0b366b376505352b9be73fd998cba5
Parents: 3e8f539
Author: Uwe Schindler <us...@apache.org>
Authored: Mon Mar 19 15:35:34 2018 +0100
Committer: Uwe Schindler <us...@apache.org>
Committed: Mon Mar 19 15:37:51 2018 +0100

----------------------------------------------------------------------
 dev-tools/scripts/smokeTestRelease.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0977743a/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index a4e7135..2e6f1e6 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -760,7 +760,7 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         #checkJavadocpathFull('%s/solr/build/docs' % unpackPath, False)
 
         print('    test solr example w/ Java 9...')
-        java.run_java9('ant clean example', '%s/antexample.log' % unpackPath)
+        java.run_java9('ant clean server', '%s/antexample.log' % unpackPath)
         testSolrExample(unpackPath, java.java9_home, True)
 
       os.chdir('..')