Stripes.
Stripes web framework jar, including tag library..
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.5</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.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The stripes-1.5 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Servlet | cos 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 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
Network | mail 1.4 The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. | 461 |
Log | log4j 1.2.15 Apache Log4j 1.2 | 310 |
Testing | testng 5.5 TestNG is a unit testing framework. | 18 |
Servlet | commons-fileupload 1.2 The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications. | 79 |
File | commons-io 1.2 Commons-IO contains utility classes, stream implementations, file filters, and endian classes. | 42 |
The following packages are defined in the stripes-1.5.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 net.sourceforge.stripes.validation.expression
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.5</version> <packaging>jar</packaging> <name>Stripes</name> <url>http://stripesframework.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://stripesframework.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.1</version> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>logkit</groupId> <artifactId>logkit</artifactId> </exclusion> <exclusion> <groupId>avalon-framework</groupId> <artifactId>avalon-framework</artifactId> </exclusion> </exclusions> </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.4</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>5.5</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.2</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>