This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git
The following commit(s) were added to refs/heads/geoapi-4.0 by this push:
new 00a4e72526 Create an initially empty `org.apache.sis.referencing.dggs`
module in the "incubator" group of modules. This is proposed for initial work
from OGC TestBed, before to be potentially dispatched to other modules.
00a4e72526 is described below
commit 00a4e725264a23639dc4cb041afcee51054da635
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Wed Jul 29 11:19:55 2026 +0200
Create an initially empty `org.apache.sis.referencing.dggs` module in the
"incubator" group of modules.
This is proposed for initial work from OGC TestBed, before to be
potentially dispatched to other modules.
---
.../apache/sis/buildtools/gradle/Dependency.java | 1 +
incubator/build.gradle.kts | 12 +++++++++++
.../main/module-info.java | 25 ++++++++++++++++++++++
3 files changed, 38 insertions(+)
diff --git
a/buildSrc/src/main/java/org/apache/sis/buildtools/gradle/Dependency.java
b/buildSrc/src/main/java/org/apache/sis/buildtools/gradle/Dependency.java
index 6be46e5944..4bcec1da8c 100644
--- a/buildSrc/src/main/java/org/apache/sis/buildtools/gradle/Dependency.java
+++ b/buildSrc/src/main/java/org/apache/sis/buildtools/gradle/Dependency.java
@@ -72,6 +72,7 @@ public final class Dependency {
Map.entry("gui", "application:sis-javafx"),
// Optional.
Map.entry("cql", "core:sis-cql"),
// Incubator.
Map.entry("geometry", "core:sis-geometry"),
// Incubator.
+ Map.entry("dggs", "core:sis-dggs"),
// Incubator.
Map.entry("storage.shapefile", "storage:sis-shapefile"),
Map.entry("storage.geoheif", "storage:sis-geoheif"),
Map.entry("storage.gsf", "storage:sis-gsf"),
diff --git a/incubator/build.gradle.kts b/incubator/build.gradle.kts
index 115dc258f4..3f0a010e56 100644
--- a/incubator/build.gradle.kts
+++ b/incubator/build.gradle.kts
@@ -186,6 +186,18 @@ publishing {
description = "Geometry API."
}
}
+ create<MavenPublication>("dggs") {
+ var module = "org.apache.sis.referencing.dggs"
+ groupId = "org.apache.sis.core"
+ artifactId = "sis-dggs"
+ artifact(layout.buildDirectory.file("libs/${module}.jar"))
+ artifact(layout.buildDirectory.file("docs/${module}-sources.jar"))
{classifier = "sources"}
+ artifact(layout.buildDirectory.file("docs/${module}-javadoc.jar"))
{classifier = "javadoc"}
+ pom {
+ name = "Apache SIS Discrete Global Grid Systems"
+ description = "Discrete Global Grid Systems (DGGS)."
+ }
+ }
create<MavenPublication>("storage.shapefile") {
var module = "org.apache.sis.storage.shapefile"
groupId = "org.apache.sis.storage"
diff --git
a/incubator/src/org.apache.sis.referencing.dggs/main/module-info.java
b/incubator/src/org.apache.sis.referencing.dggs/main/module-info.java
new file mode 100644
index 0000000000..592761fd69
--- /dev/null
+++ b/incubator/src/org.apache.sis.referencing.dggs/main/module-info.java
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Discrete Global Grid Systems (<abbr>DGGS</abbr>).
+ *
+ * @author Johann Sorel (Geomatys)
+ */
+module org.apache.sis.referencing.dggs {
+ requires transitive org.apache.sis.referencing;
+}