jetty-rewrite-handler.
Jetty Rewrite Handler.
Here is the list of declaration for jetty-rewrite-handler. 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-rewrite-handler</artifactId> <version>6.1.19</version> </dependency>
If you think this Maven repository POM file listing for jetty-rewrite-handler 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-rewrite-handler-6.1.19.jar
The following packages are defined in the jetty-rewrite-handler-6.1.19.jar
org.mortbay.jetty.handler.rewrite
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.19</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jetty-rewrite-handler</artifactId> <name>jetty-rewrite-handler</name> <url>http://jetty.mortbay.org</url> <description>Jetty Rewrite Handler</description> <build> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</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" file="../../lib/ext/${project.artifactId}-${project.version}.${project.packaging}" /> <delete failonerror="false" file="../../etc/jetty-rewrite.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}" todir="../../lib/ext" /> <copy failonerror="false" file="src/main/config/etc/jetty-rewrite.xml" todir="../../etc" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api</artifactId> <version>${servlet-version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-servlet-tester</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>