hdiv-jstl-taglibs-1.2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hdiv</groupId> <artifactId>hdiv-jstl-taglibs-1.2</artifactId> <version>3.5.2</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>hdiv</artifactId> <groupId>org.hdiv</groupId> <version>3.5.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hdiv-jstl-taglibs-1.2</artifactId> <packaging>jar</packaging> <name>Hdiv Community jstl-taglibs-1.2</name> <url>http://www.hdiv.org</url> <description>Web Application Security Framework</description> <properties> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>org.hdiv</groupId> <artifactId>hdiv-core</artifactId> <version>${project.version}</version> </dependency> <!-- Servlet --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp.jstl</groupId> <artifactId>jstl-api</artifactId> <version>1.2</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.glassfish.web</groupId> <artifactId>jstl-impl</artifactId> <version>1.2</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.11</version> <configuration> <header>${project.parent.basedir}/LICENSE_HEADER</header> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <doctitle>Hdiv Community JSTL Tags</doctitle> <header>Hdiv Community API ${project.version}</header> <footer>Hdiv Community ${project.version}</footer> <destDir>../docs/api/hdiv-jstl-taglibs-1.2</destDir> </configuration> </plugin> </plugins> </reporting> </project>