diff --git a/extra-targets.xml b/extra-targets.xml index 2f3540a16c9..352c055346b 100644 --- a/extra-targets.xml +++ b/extra-targets.xml @@ -92,7 +92,7 @@ - + @@ -107,8 +107,6 @@ import org.tmatesoft.svn.core.wc.*; import org.apache.tools.ant.Project; - def RECOMMENDED_SVNKIT_18 = '1.8.2'; - SVNClientManager manager = SVNClientManager.newInstance(); SVNStatusClient statusClient = manager.getStatusClient(); SVNWCClient wcClient = manager.getWCClient(); @@ -124,11 +122,7 @@ def ec = ex.getErrorMessage().getErrorCode(); int code = ec.getCode(); int category = ec.getCategory(); - if (code == SVNErrorCode.WC_UNSUPPORTED_FORMAT.getCode()) { - task.log('WARNING: Unsupported SVN working copy version! Disabling checks...', Project.MSG_WARN); - task.log('If your working copy is on version 1.8 already, please pass -Dsvnkit.version=' + RECOMMENDED_SVNKIT_18 + ' to successfully run checks.', Project.MSG_INFO); - return; - } else if (code == SVNErrorCode.WC_NOT_DIRECTORY.getCode() || code == SVNErrorCode.WC_NOT_FILE.getCode()) { + if (code == SVNErrorCode.WC_NOT_DIRECTORY.getCode() || code == SVNErrorCode.WC_NOT_FILE.getCode()) { task.log('WARNING: Development directory is not an SVN checkout! Disabling checks...', Project.MSG_WARN); return; } else if (category == SVNErrorCode.WC_CATEGORY) { diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index ebe9df3d6d1..f6800af51d7 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -162,6 +162,9 @@ Build * LUCENE-5463: RamUsageEstimator.(human)sizeOf(Object) is now a forbidden API. (Adrien Grand, Robert Muir) +* LUCENE-5511: "ant precommit" / "ant check-svn-working-copy" now work again + with any working copy format (thanks to svnkit 1.8.4). (Uwe Schindler) + ======================= Lucene 4.7.0 ======================= New Features