This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/sis.git
The following commit(s) were added to refs/heads/main by this push: new 2d716eab6d Remove references to the `org.apache.sis.cql` incubating module. This module is present on other branches but not on main because for avoiding the need to manage geoapi-pending dependencies. 2d716eab6d is described below commit 2d716eab6dcd6cb51dbf98ea134624e8fb1ebd6d Author: Martin Desruisseaux <martin.desruisse...@geomatys.com> AuthorDate: Fri Sep 15 14:19:06 2023 +0200 Remove references to the `org.apache.sis.cql` incubating module. This module is present on other branches but not on main because for avoiding the need to manage geoapi-pending dependencies. --- endorsed/src/org.apache.sis.util/main/module-info.java | 1 - incubator/build.gradle.kts | 12 ------------ 2 files changed, 13 deletions(-) diff --git a/endorsed/src/org.apache.sis.util/main/module-info.java b/endorsed/src/org.apache.sis.util/main/module-info.java index c61c9a93c4..227645d78a 100644 --- a/endorsed/src/org.apache.sis.util/main/module-info.java +++ b/endorsed/src/org.apache.sis.util/main/module-info.java @@ -125,7 +125,6 @@ module org.apache.sis.util { org.apache.sis.storage.netcdf, org.apache.sis.storage.geotiff, org.apache.sis.storage.earthobservation, - org.apache.sis.cql, // In the "incubator" sub-project. org.apache.sis.portrayal, org.apache.sis.cloud.aws, org.apache.sis.console, diff --git a/incubator/build.gradle.kts b/incubator/build.gradle.kts index 5d7bcce0ac..797f762d10 100644 --- a/incubator/build.gradle.kts +++ b/incubator/build.gradle.kts @@ -73,9 +73,6 @@ dependencies { * replace ANTLR generated code by hand-written code in a future version. */ var srcDir = file("src") // Must be the same as the hard-coded value in `BuildHelper.java`. -tasks.generateGrammarSource { - setOutputDirectory(file("${srcDir}/org.apache.sis.cql/main")) -} tasks.compileJava { dependsOn(":endorsed:compileJava") options.release.set(11) // The version of both Java source code and compiled byte code. @@ -113,15 +110,6 @@ tasks.test { */ publishing { publications { - create<MavenPublication>("cql") { - groupId = "org.apache.sis.core" - artifactId = "sis-cql" - artifact(file("${buildDir}/libs/org.apache.sis.cql.jar")) - pom { - name = "Apache SIS CQL" - description = "CQL parser." - } - } create<MavenPublication>("storage.shapefile") { groupId = "org.apache.sis.storage" artifactId = "sis-shapefile"