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

desruisseaux pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git

commit 2e7ab796e13b7f0d98c1647e6cfe4d03f7cad745
Author: Martin Desruisseaux <martin.desruisse...@geomatys.com>
AuthorDate: Mon Aug 12 14:14:32 2024 +0200

    Enable geopackage geometry support (work by Johann Sorel).
---
 .../src/org.apache.sis.storage.geopackage/main/module-info.java     | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/incubator/src/org.apache.sis.storage.geopackage/main/module-info.java 
b/incubator/src/org.apache.sis.storage.geopackage/main/module-info.java
index 9b0fc5c162..0fed36b356 100644
--- a/incubator/src/org.apache.sis.storage.geopackage/main/module-info.java
+++ b/incubator/src/org.apache.sis.storage.geopackage/main/module-info.java
@@ -25,11 +25,17 @@ module org.apache.sis.storage.geopackage {
     requires transitive org.apache.sis.referencing;
     requires transitive org.apache.sis.storage;
     requires transitive org.apache.sis.storage.sql;
+    requires transitive org.apache.sis.feature;
     requires transitive com.zaxxer.hikari;
     requires org.xerial.sqlitejdbc;
 
     exports org.apache.sis.storage.geopackage;
 
+    uses org.apache.sis.storage.geopackage.GpkgContentHandler;
+
+    provides org.apache.sis.storage.geopackage.GpkgContentHandler
+            with 
org.apache.sis.storage.geopackage.featureset.GpkgFeatureSetHandler;
+
     provides org.apache.sis.storage.DataStoreProvider
             with org.apache.sis.storage.geopackage.GpkgProvider;
 }

Reply via email to