sos-common-controller
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-common-controller</artifactId> <version>6.0.0-PR.17</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-server.sos</groupId> <artifactId>sos-spring</artifactId> <version>6.0.0-PR.17</version> </parent> <artifactId>sos-common-controller</artifactId> <name>52°North SOS - Web Common Controller</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-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>org.n52.arctic-sea</groupId> <artifactId>faroe-annotations</artifactId> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</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>javax</groupId> <artifactId>javaee-api</artifactId> <scope>provided</scope> </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-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-crypto</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </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>