Maven Repository - POM file for Library pluto-taglib 1.1.7 1.1.7

Summary

Pluto Portlet Tag Library.

Pluto's Java Portlet Specification Tag Library implementation.

Declaration

Here is the list of declaration for pluto-taglib. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.pluto</groupId>
   <artifactId>pluto-taglib</artifactId>
   <version>1.1.7</version>
</dependency>

If you think this Maven repository POM file listing for pluto-taglib is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the pluto-taglib-1.1.7.jar

  1. maven-assembly-plugin
  2. maven-remote-resources-plugin




Packages

The following packages are defined in the pluto-taglib-1.1.7.jar

org.apache.pluto.tags
org.apache.pluto.tags.el

POM File Source

Here is the content of the POM file.

<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>
        <groupId>org.apache.pluto</groupId>
        <artifactId>pluto</artifactId>
        <version>1.1.7</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>pluto-taglib</artifactId>
    <packaging>jar</packaging>
    <name>Pluto Portlet Tag Library</name>
    <description>Pluto's Java Portlet Specification Tag Library implementation</description>

    <dependencies>

        <dependency>
            <groupId>javax.portlet</groupId>
            <artifactId>portlet-api</artifactId>
            <version>${portlet-api.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>${servlet-api.version}</version>
            <scope>provided</scope>
        </dependency>
      <!--
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>${jsp-api.version}</version>
            <scope>provided</scope>
        </dependency>
        -->

      <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging-api</artifactId>
        <version>${commons-logging.version}</version>
      </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <!-- Assembly Plugin - Create Distributions -->
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptor>src/assemble/bin.xml</descriptor>
                    <finalName>pluto-taglib-${pom.currentVersion}</finalName>
                </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-remote-resources-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>