addc-web-struts12
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.addc</groupId> <artifactId>addc-web-struts12</artifactId> <version>2.6</version> </dependency>
<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"> <parent> <groupId>com.addc</groupId> <artifactId>addc-server</artifactId> <version>2.6</version> <relativePath>../addc-server</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>addc-web-struts12</artifactId> <packaging>war</packaging> <name>addc-web-struts12</name> <description> The addc-web-struts12 library supplies a WAR file with struts 1.2 based login/logout access denied and error pages for use in other WAR packages. </description> <build> <plugins> <plugin> <groupId>org.jasig.mojo.jspc</groupId> <artifactId>jspc-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>fix.warning</id> <goals> <goal>run</goal> </goals> <phase>post-site</phase> <configuration> <target> <replace file="${project.build.directory}/site/index.html" token="<p><b>" value="<b>" /> <replace file="${project.build.directory}/site/index.html" token="</b></p>" value="</b>" /> </target> </configuration> </execution> </executions> </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-struts12</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> <scope>provided</scope> </dependency> <dependency> <groupId>struts</groupId> <artifactId>struts-el</artifactId> <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-struts</artifactId> <scope>provided</scope> <exclusions> <exclusion> <artifactId>antlr</artifactId> <groupId>antlr</groupId> </exclusion> </exclusions> </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>