You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2021/03/24 09:17:52 UTC

[calcite] branch master updated (7bb23ed -> 7f65cf2)

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

vladimirsitnikov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git.


    omit 7bb23ed  Remove use of testRuntime from the build script
     new 7f65cf2  Repalce testRuntime with runtimeElements and testRuntimeClasspath for Gradle 7 compatibility

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7bb23ed)
            \
             N -- N -- N   refs/heads/master (7f65cf2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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.kts                                     |  2 ++
 .../test/java/org/apache/calcite/test/JdbcTest.java  | 20 --------------------
 2 files changed, 2 insertions(+), 20 deletions(-)

[calcite] 01/01: Repalce testRuntime with runtimeElements and testRuntimeClasspath for Gradle 7 compatibility

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit 7f65cf2bfe2acd8d86773651527e2371492422db
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Wed Mar 24 10:12:17 2021 +0300

    Repalce testRuntime with runtimeElements and testRuntimeClasspath for Gradle 7 compatibility
---
 build.gradle.kts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/build.gradle.kts b/build.gradle.kts
index 138a391..a0d2ca6 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -790,7 +790,10 @@ allprojects {
         }
 
         val testClasses by configurations.creating {
-            extendsFrom(configurations["testRuntime"])
+            isCanBeConsumed = true
+            isCanBeResolved = false
+            extendsFrom(configurations["runtimeElements"])
+            extendsFrom(configurations["testRuntimeClasspath"])
         }
 
         val archives by configurations.getting