Winstone.
Winstone is a servlet container that was written out of a desire to provide servlet functionality without the bloat that full J2EE compliance introduces..
Here is the list of declaration for winstone. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet.hudson.winstone</groupId> <artifactId>winstone</artifactId> <version>0.9.10-hudson-6</version> </dependency>
If you think this Maven repository POM file listing for winstone is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License version 2.1
URL: http://www.gnu.org/licenses/lgpl.htmlName:COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
URL: http://www.sun.com/cddl/cddl.html.
The winstone-0.9.10-hudson-6 has 2 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 |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
Testing | httpunit 1.6 A Java library for the automatic stimulation and testing of web applications. | 12 |
The following plugins are used in the winstone-0.9.10-hudson-6.jar
The following packages are defined in the winstone-0.9.10-hudson-6.jar
javax.servlet javax.servlet.http winstone winstone.accesslog winstone.ajp13 winstone.auth winstone.classLoader winstone.cluster winstone.invoker winstone.jndi winstone.jndi.java winstone.jndi.resourceFactories winstone.realm winstone.ssl winstone.tools
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.hudson.winstone</groupId> <artifactId>winstone</artifactId> <version>0.9.10-hudson-6</version> <packaging>jar</packaging> <name>Winstone</name> <url>http://winstone.sourceforge.net/</url> <description>Winstone is a servlet container that was written out of a desire to provide servlet functionality without the bloat that full J2EE compliance introduces.</description> <licenses> <license> <name>GNU Lesser General Public License version 2.1</name> <url>http://www.gnu.org/licenses/lgpl.html</url> </license> <license> <name>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</name> <url>http://www.sun.com/cddl/cddl.html</url> </license> </licenses> <scm> <connection>scm:cvs:pserver:anonymous@winstone.cvs.sourceforge.net:/cvsroot/winstone</connection> <url>http://winstone.cvs.sourceforge.net/winstone/winstone</url> </scm> <build> <sourceDirectory>src/java</sourceDirectory> <resources> <resource> <directory>src/conf</directory> <filtering>true</filtering> <includes> <include>**/*.*</include> </includes> </resource> <resource> <directory>src/java</directory> <includes> <include>**/*.properties</include> </includes> </resource> </resources> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>src/test</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>prepare-testwebapp</id> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy overwrite="true" todir="${project.build.directory}"> <fileset dir="${basedir}/src" includes="testwebapp/**"/> </copy> <copy overwrite="true" todir="${project.build.directory}/testwebapp/WEB-INF/classes"> <fileset dir="${project.build.testOutputDirectory}" includes="**"/> </copy> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*NaughtyTest.java</exclude> <exclude>winstone/testCase/load/LoadTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <mainClass>winstone.Launcher</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-maven2-repository</id> <url>java-net:/maven2-repository/trunk/www/repository/</url> </repository> </distributionManagement> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.6</version> <scope>test</scope> </dependency> </dependencies> </project>