addc-web-mvc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addc</groupId> <artifactId>addc-web-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-web-mvc</artifactId> <name>addc-web-mvc</name> <packaging>war</packaging> <description> The addc-web-mvc library supplies a WAR file with Spring Web MVC based login/logout access denied and error pages for use in other WAR packages. </description> <url>http://www.peterkanis.com/projects/${project.artifactId}</url> <build> <plugins> <plugin> <groupId>org.jasig.mojo.jspc</groupId> <artifactId>jspc-maven-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.addc</groupId> <artifactId>addc-base</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-svr-base</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-svr-mvc</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.addc</groupId> <artifactId>addc-tag</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> </exclusion> </exclusions> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>antlr</groupId> <artifactId>antlr</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>