Download taglibs-standard-spec-1.2.5.jar file

Introduction

You can download taglibs-standard-spec-1.2.5.jar in this page.

License

Apache License

Type List

taglibs-standard-spec-1.2.5.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.taglibs/taglibs-standard-spec/pom.properties
META-INF/maven/org.apache.taglibs/taglibs-standard-spec/pom.xml
javax.servlet.jsp.jstl.core.ConditionalTagSupport.class
javax.servlet.jsp.jstl.core.Config.class
javax.servlet.jsp.jstl.core.IndexedValueExpression.class
javax.servlet.jsp.jstl.core.IteratedExpression.class
javax.servlet.jsp.jstl.core.IteratedValueExpression.class
javax.servlet.jsp.jstl.core.LoopTag.class
javax.servlet.jsp.jstl.core.LoopTagStatus.class
javax.servlet.jsp.jstl.core.LoopTagSupport.class
javax.servlet.jsp.jstl.fmt.JakartaInline.class
javax.servlet.jsp.jstl.fmt.LocaleSupport.class
javax.servlet.jsp.jstl.fmt.LocalizationContext.class
javax.servlet.jsp.jstl.sql.Result.class
javax.servlet.jsp.jstl.sql.ResultImpl.class
javax.servlet.jsp.jstl.sql.ResultSupport.class
javax.servlet.jsp.jstl.sql.SQLExecutionTag.class
javax.servlet.jsp.jstl.tlv.PageParser.class
javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV.class
javax.servlet.jsp.jstl.tlv.ScriptFreeTLV.class

Pom

taglibs-standard-spec-1.2.5.pom file content.

<?xml version="1.0"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.apache.taglibs</groupId>
        <artifactId>taglibs-standard</artifactId>
        <version>1.2.5</version>
    </parent>

    <artifactId>taglibs-standard-spec</artifactId>
    <version>1.2.5</version>
    <packaging>bundle</packaging>

    <name>Apache Standard Taglib Specification API</name>

    <inceptionYear>2001</inceptionYear>
    <description>
        An implementation of the JSP Standard Tag Library (JSTL) Specification API.
    </description>

    <scm>
        <connection>scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/spec</connection>
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/spec
        </developerConnection>
        <url>http://svn.apache.org/viewvc/tomcat/taglibs/standard/tags/taglibs-standard-1.2.5/spec</url>
    </scm>

    <developers>
        <developer><name>Pierre Delisle</name></developer>
        <developer><name>Shawn Bayern</name></developer>
        <developer><name>Nathan Abramson</name></developer>
        <developer><name>Hans Bergsten</name></developer>
        <developer><name>Scott Hasse</name></developer>
        <developer><name>Justyna Horwat</name></developer>
        <developer><name>Mark Kolb</name></developer>
        <developer><name>Jan Luehe</name></developer>
        <developer><name>Glenn Nielsen</name></developer>
        <developer><name>Dmitri Plotnikov</name></developer>
        <developer><name>Felipe Leme</name></developer>
        <developer><name>Henri Yandell</name></developer>
        <developer><name>Bjorn Townsend</name></developer>
    </developers>

    <contributors>
        <contributor><name>Robert Goff</name></contributor>
    </contributors>

    <dependencies>
        <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.el</groupId>
            <artifactId>el-api</artifactId>
            <version>1.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>3.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.groupId}.${project.artifactId};singleton=true</Bundle-SymbolicName>
                        <Specification-Title>JSR-052 JavaServer Pages Standard Tag Library Specification
                        </Specification-Title>
                        <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
                        <Specification-Version>1.2</Specification-Version>
                        <Export-Package>javax.servlet.jsp.jstl*;version=1.2</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <configLocation>../build-tools/src/main/resources/taglibs/checkstyle.xml</configLocation>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <reporting>
        <plugins>
        </plugins>
    </reporting>
</project>

POM Entry

<dependency>
   <groupId>org.apache.taglibs</groupId>
   <artifactId>taglibs-standard-spec</artifactId>
   <version>1.2.5</version>
</dependency>

Download

If you think the following taglibs-standard-spec-1.2.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download taglibs-standard-spec-1.2.5.jar file




PreviousNext

Related