Maven Repository - POM file for Development stripes 1.4.3 1.4.3

Summary

Stripes.

Stripes web framework jar, including tag library..

Declaration

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

<dependency>
   <groupId>net.sourceforge.stripes</groupId>
   <artifactId>stripes</artifactId>
   <version>1.4.3</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The stripes-1.4.3 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Servletcos 05Nov2002
The O'Reilly Servlet Package (com.oreilly.servlet) by Jason Hunter to accompany his book, Java Servlet Programming, including the famous MultipartRequest and MultipartParser classes.
6
Logcommons-logging 1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
445
Servletcommons-fileupload 1.1.1
The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications.
48
Filecommons-io 1.2
Commons-IO contains utility classes, stream implementations, file filters, and endian classes.
42




Packages

The following packages are defined in the stripes-1.4.3.jar

net.sourceforge.stripes
net.sourceforge.stripes.action
net.sourceforge.stripes.ajax
net.sourceforge.stripes.config
net.sourceforge.stripes.controller
net.sourceforge.stripes.controller.multipart
net.sourceforge.stripes.exception
net.sourceforge.stripes.format
net.sourceforge.stripes.integration.spring
net.sourceforge.stripes.localization
net.sourceforge.stripes.mock
net.sourceforge.stripes.tag
net.sourceforge.stripes.tag.layout
net.sourceforge.stripes.tools
net.sourceforge.stripes.util
net.sourceforge.stripes.util.bean
net.sourceforge.stripes.validation




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!-- This pom.xml is intended to be included with the stripes-x-bundle.jar that
  ++ is uploaded to the maven2 repository at iBiblio. It is not a complete
  ++ build environment for Stripes. If you intent to build Stripes locally
  ++ please use the ant build scripts provided (they're dead simple).
  -->
<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>net.sourceforge.stripes</groupId>
    <artifactId>stripes</artifactId>
    <version>1.4.3</version>
    <packaging>jar</packaging>
    <name>Stripes</name>
    <url>http://stripes.mc4j.org/</url>
    <description>Stripes web framework jar, including tag library.</description>
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://svn.sourceforge.net/svnroot/stripes</url>
    </scm>
    <issueManagement>
        <system>JIRA</system>
        <url>http://mc4j.org/jira/browse/STS</url>
    </issueManagement>
    <dependencies>
        <dependency>
            <groupId>servlets.com</groupId>
            <artifactId>cos</artifactId>
            <version>05Nov2002</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>1.3.3_01</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.9</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>5.02</version>
            <scope>test</scope>
        </dependency>
        
        <!-- Spring is needed to compile the Spring support in Stripes, and from then on, only if
             you are actually using Spring in your own application.
        -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring</artifactId>
            <version>1.2.6</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        
        <!-- Commons fileupload and io are listed as optional dependencies for Stripes beceause
             they are needed to compile and use the commons version of the MultipartWrapper.
             However, the default implementation uses COS instead, so these jars are only
             necessary if you plan to use the commons version, or which to compiles Stripes
             from source.
        -->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.1.1</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.2</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
    </dependencies>
</project>