addc-svr-mvc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addc</groupId> <artifactId>addc-svr-mvc</artifactId> <version>2.9</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/maven-v4_0_0.xsd"> <parent> <artifactId>addc-server</artifactId> <groupId>com.addc</groupId> <version>2.9</version> <relativePath>../addc-server</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>addc-svr-mvc</artifactId> <name>addc-svr-mvc</name> <description>Spring MVC classes</description> <url>http://www.peterkanis.com/projects/${project.artifactId}</url> <dependencies> <dependency> <groupId>com.addc</groupId> <artifactId>addc-base</artifactId> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-svr-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> </dependencies> </project>