Jetty Plus.
Jetty JavaEE style services.
Here is the list of declaration for jetty-plus. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-plus</artifactId> <version>6.1.22</version> </dependency>
If you think this Maven repository POM file listing for jetty-plus is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the jetty-plus-6.1.22.jar
The following packages are defined in the jetty-plus-6.1.22.jar
org.mortbay.jetty.plus.annotation org.mortbay.jetty.plus.jaas org.mortbay.jetty.plus.jaas.callback org.mortbay.jetty.plus.jaas.spi org.mortbay.jetty.plus.naming org.mortbay.jetty.plus.servlet org.mortbay.jetty.plus.webapp
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> <artifactId>project</artifactId> <groupId>org.mortbay.jetty</groupId> <version>6.1.22</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-plus</artifactId> <name>Jetty Plus</name> <description>Jetty JavaEE style services</description> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete failonerror="false" includeemptydirs="true"> <fileset dir="../../lib/" includes="plus/**" /> </delete> <delete failonerror="false" file="../../etc/jetty-plus.xml" /> </tasks> </configuration> </execution> <execution> <id>copyjar</id> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy failonerror="false" file="target/${project.artifactId}-${project.version}.${project.packaging}" tofile="../../lib/plus/${project.artifactId}-${project.version}.${project.packaging}" /> <copy failonerror="false" file="src/main/config/etc/jetty-plus.xml" todir="../../etc" /> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin-version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment> <Bundle-SymbolicName>org.mortbay.jetty.plus</Bundle-SymbolicName> <Import-Package>!org.mortbay.jetty.plus.*,*</Import-Package> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <!-- Required for OSGI --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.1.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-apacheds</artifactId> <version>1.0-alpha-1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-20</version> <scope>test</scope> </dependency> <dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-jta</artifactId> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-naming</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>