geowave-core-geotime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.locationtech.geowave</groupId> <artifactId>geowave-core-geotime</artifactId> <version>2.0.1</version> </dependency>
<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> <parent> <groupId>org.locationtech.geowave</groupId> <artifactId>geowave-core-parent</artifactId> <relativePath>../</relativePath> <version>2.0.1</version> </parent> <artifactId>geowave-core-geotime</artifactId> <name>GeoWave Spatial and Temporal Support</name> <dependencies> <dependency> <groupId>io.sgr</groupId> <artifactId>s2-geometry-library-java</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>com.uber</groupId> <artifactId>h3</artifactId> <version>3.7.0</version> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>geo</artifactId> <version>0.7.7</version> </dependency> <dependency> <groupId>org.locationtech.jts</groupId> <artifactId>jts-core</artifactId> </dependency> <!--we can switch the dependency from store to ingest when accumulo becomes a pluggable data store and is no longer a dependency on ingest --> <dependency> <groupId>org.locationtech.geowave</groupId> <artifactId>geowave-core-index</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-epsg-wkt</artifactId> </dependency> <dependency> <groupId>org.locationtech.geowave</groupId> <artifactId>geowave-core-store</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-referencing</artifactId> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-cql</artifactId> </dependency> <dependency> <groupId>org.threeten</groupId> <artifactId>threeten-extra</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>org.locationtech.geowave</groupId> <artifactId>geowave-core-store</artifactId> <classifier>tests</classifier> <type>test-jar</type> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>