sos-cache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-cache</artifactId> <version>6.0.1</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> <parent> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-core</artifactId> <version>6.0.1</version> </parent> <artifactId>sos-cache</artifactId> <name>52°North SOS - Cache</name> <description>This module provides the default cache implementations.</description> <inceptionYear>2013</inceptionYear> <dependencies> <!-- external --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>iceland</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>faroe-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>shetland</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>svalbard</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>janmayen</artifactId> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> </dependency> <dependency> <groupId>org.locationtech.jts</groupId> <artifactId>jts-core</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- internal --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-api</artifactId> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>iceland</artifactId> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>