common-controller
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.n52.sensorweb.sos</groupId>
<artifactId>common-controller</artifactId>
<version>5.0.0-alpha.10</version>
</dependency><?xml version="1.0"?>
<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.sos</groupId>
<artifactId>spring</artifactId>
<version>5.0.0-alpha.10</version>
</parent>
<artifactId>common-controller</artifactId>
<name>52°North SOS - Web Common Controller</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>api</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>janmayen</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>shetland</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe-utils</artifactId>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe-json</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<usedDependencies>
<usedDependency>com.fasterxml.jackson.core:jackson-core</usedDependency>
</usedDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>