This is an automated email from the ASF dual-hosted git repository. frankgh pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-sidecar.git
The following commit(s) were added to refs/heads/trunk by this push: new 09e05bfd CASSSIDECAR-190: Fix artifact group for integration-framework/test (#177) 09e05bfd is described below commit 09e05bfdf58af7c53d6cd39b123f236712b879ee Author: Francisco Guerrero <fran...@apache.org> AuthorDate: Thu Jan 30 15:13:13 2025 -0800 CASSSIDECAR-190: Fix artifact group for integration-framework/test (#177) Patch by Francisco Guerrero; reviewed by Yifan Cai, Bernardo Botella for CASSSIDECAR-190 --- integration-framework/build.gradle | 18 ++---------------- integration-tests/build.gradle | 14 ++------------ test-common/build.gradle | 3 +++ 3 files changed, 7 insertions(+), 28 deletions(-) diff --git a/integration-framework/build.gradle b/integration-framework/build.gradle index 4727edaa..8e8c2a2a 100644 --- a/integration-framework/build.gradle +++ b/integration-framework/build.gradle @@ -19,24 +19,10 @@ plugins { id('java-library') - id('maven-publish') } -java { - withJavadocJar() - withSourcesJar() -} - -publishing { - publications { - maven(MavenPublication) { - from components.java - groupId project.group - artifactId "${archivesBaseName}" - version System.getenv("CODE_VERSION") ?: "${version}" - } - } -} +group 'org.apache.cassandra.sidecar' +version project.version ext.dtestJar = System.getenv("DTEST_JAR") ?: "dtest-4.1.8.jar" // latest supported Cassandra build is 4.1 def dtestJarFullPath = "${dependencyLocation}${ext.dtestJar}" diff --git a/integration-tests/build.gradle b/integration-tests/build.gradle index ece26ff0..9fa982f9 100644 --- a/integration-tests/build.gradle +++ b/integration-tests/build.gradle @@ -20,20 +20,10 @@ plugins { id('idea') // A Java library id('java-library') - // which is published - id('maven-publish') } -publishing { - publications { - maven(MavenPublication) { - from components.java - groupId project.group - artifactId "${archivesBaseName}" - version System.getenv("CODE_VERSION") ?: "${version}" - } - } -} +group 'org.apache.cassandra.sidecar' +version project.version sourceSets { integrationTest { diff --git a/test-common/build.gradle b/test-common/build.gradle index c5ae8ab7..1c0ae875 100644 --- a/test-common/build.gradle +++ b/test-common/build.gradle @@ -23,6 +23,9 @@ plugins { id('java-test-fixtures') } +group 'org.apache.cassandra.sidecar' +version project.version + sourceCompatibility = 1.8 publishing { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org