h2gis-utilities
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis-utilities</artifactId> <version>2.2.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- Maven Coordinates --> <parent> <artifactId>h2gis-parent</artifactId> <groupId>org.orbisgis</groupId> <version>2.2.3</version> <relativePath>../pom.xml</relativePath> </parent> <name>h2gis-utilities</name> <packaging>bundle</packaging> <!-- Project Information --> <artifactId>h2gis-utilities</artifactId> <description>Collection of methods to fetch spatial metadata in SFS database like PostGIS or H2GIS. Theses functions can be commonly used either in PostGIS or in H2. Spatial utilities publish also a DataSourceFactory wrapper that provide JDBC Wrapper for spatial functionality. </description> <organization> <name>CNRS</name> <url>http://www.h2gis.org</url> </organization> <url>http://github.com/orbisgis/H2GIS</url> <licenses> <license> <name>GNU Lesser General Public License (LGPLV3+)</name> <url>http://www.gnu.org/licenses/lgpl-3.0.html</url> </license> </licenses> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.locationtech.jts</groupId> <artifactId>jts-core</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis-api</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>cts</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>h2gis-test-utilities</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.orbisgis</groupId> <artifactId>postgis-jts-osgi</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> </dependencies> <!-- Build Settings --> <build> <plugins> <!-- Plugin for the bundle packaging --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-version}</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>org.h2gis.utilities.*</Export-Package> <Private-Package>org.h2gis.utilities.wrapper</Private-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>