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 2020/08/31 11:00:33 UTC

[lucene-solr] branch LUCENE-9215 updated (0a9c2a1 -> 0c945c8)

This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a change to branch LUCENE-9215
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 0a9c2a1  Merge branch 'master' of https://gitbox.apache.org/repos/asf/lucene-solr into LUCENE-9215
     add 4129daa  master is on java 11!
     add 5e8bb79  LUCENE-9491: Consolidate test options and improve support for dynamic… (#1807)
     add bbf3aec  LUCENE-9475: Switch validateSourcePatterns away from Ant legacy (#1806)
     new b779291  Merge branch 'master' of https://gitbox.apache.org/repos/asf/lucene-solr into LUCENE-9215
     new 0c945c8  Exclude Doclet from source checks

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.gradle                                       |   1 +
 gradle/defaults.gradle                             |  12 +
 .../hacks/hashmapAssertions.gradle                 |  28 +--
 gradle/testing/beasting.gradle                     |  12 +-
 gradle/testing/defaults-tests.gradle               |  56 ++++-
 gradle/testing/profiling.gradle                    |  50 +++--
 gradle/testing/randomization.gradle                |  79 ++++---
 gradle/validation/config-file-sanity.gradle        |   2 +-
 gradle/validation/validate-source-patterns.gradle  | 241 +++++++++++++++++++--
 .../check-source-patterns.groovy                   | 229 --------------------
 10 files changed, 375 insertions(+), 335 deletions(-)
 copy solr/solrj/src/java/org/apache/solr/common/util/IOUtils.java => gradle/hacks/hashmapAssertions.gradle (61%)
 delete mode 100644 gradle/validation/validate-source-patterns/check-source-patterns.groovy


[lucene-solr] 01/02: Merge branch 'master' of https://gitbox.apache.org/repos/asf/lucene-solr into LUCENE-9215

Posted by us...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch LUCENE-9215
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit b779291a0418747497b6d9dad0ef9560d2497c27
Merge: 0a9c2a1 bbf3aec
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Aug 31 12:54:14 2020 +0200

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/lucene-solr into LUCENE-9215

 build.gradle                                       |   1 +
 gradle/defaults.gradle                             |  12 ++
 .../hashmapAssertions.gradle}                      |  36 ++--
 gradle/testing/beasting.gradle                     |  12 +-
 gradle/testing/defaults-tests.gradle               |  56 ++++-
 gradle/testing/profiling.gradle                    |  50 +++--
 gradle/testing/randomization.gradle                |  79 ++++---
 gradle/validation/config-file-sanity.gradle        |   2 +-
 gradle/validation/validate-source-patterns.gradle  | 240 +++++++++++++++++++--
 .../check-source-patterns.groovy                   | 229 --------------------
 10 files changed, 376 insertions(+), 341 deletions(-)



[lucene-solr] 02/02: Exclude Doclet from source checks

Posted by us...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch LUCENE-9215
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 0c945c89e2018adbb920934f0dbbcae78f753fb2
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Aug 31 13:00:24 2020 +0200

    Exclude Doclet from source checks
---
 gradle/validation/validate-source-patterns.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gradle/validation/validate-source-patterns.gradle b/gradle/validation/validate-source-patterns.gradle
index 827f1d3..03ab081 100644
--- a/gradle/validation/validate-source-patterns.gradle
+++ b/gradle/validation/validate-source-patterns.gradle
@@ -56,6 +56,7 @@ configure(rootProject) {
       // excludes:
       exclude '**/build/**'
       exclude '**/dist/**'
+      exclude 'dev-tools/missing-doclet/src/**/*.java' // <-- TODO: remove once we allow "var" on master
       exclude 'lucene/benchmark/work/**'
       exclude 'lucene/benchmark/temp/**'
       exclude '**/CheckLoggingConfiguration.java'