selenium-jetty-repacked.
A repacked jetty.
Here is the list of declaration for jetty-repacked. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>jetty-repacked</artifactId> <version>7.6.1</version> </dependency>
If you think this Maven repository POM file listing for jetty-repacked 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 following plugins are used in the jetty-repacked-7.6.1.jar
The following packages are defined in the jetty-repacked-7.6.1.jar
org.seleniumhq.jetty7.continuation org.seleniumhq.jetty7.http org.seleniumhq.jetty7.http.gzip org.seleniumhq.jetty7.http.ssl org.seleniumhq.jetty7.io org.seleniumhq.jetty7.io.bio org.seleniumhq.jetty7.io.nio org.seleniumhq.jetty7.security org.seleniumhq.jetty7.security.authentication org.seleniumhq.jetty7.server org.seleniumhq.jetty7.server.bio org.seleniumhq.jetty7.server.handler org.seleniumhq.jetty7.server.handler.jmx org.seleniumhq.jetty7.server.jmx org.seleniumhq.jetty7.server.nio org.seleniumhq.jetty7.server.session org.seleniumhq.jetty7.server.session.jmx org.seleniumhq.jetty7.server.ssl org.seleniumhq.jetty7.servlet org.seleniumhq.jetty7.servlet.api org.seleniumhq.jetty7.servlet.jmx org.seleniumhq.jetty7.servlet.listener org.seleniumhq.jetty7.util org.seleniumhq.jetty7.util.ajax org.seleniumhq.jetty7.util.component org.seleniumhq.jetty7.util.log org.seleniumhq.jetty7.util.resource org.seleniumhq.jetty7.util.security org.seleniumhq.jetty7.util.ssl org.seleniumhq.jetty7.util.statistic org.seleniumhq.jetty7.util.thread
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>jetty-repacked</artifactId> <name>selenium-jetty-repacked</name> <version>7.6.1</version> <description>A repacked jetty</description> <url>http://github.com/krosenvold/convention-bean-factory</url> <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> <connection>scm:git:https://github.com/krosenvold/jetty-repack</connection> <developerConnection>scm:git:ssh://git@github.com/krosenvold/jetty-repack.git</developerConnection> <url>http://github.com/krosenvold/jetty-repack</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <encoding>ISO-8859-1</encoding> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> <configuration> <releaseProfiles>release</releaseProfiles> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <artifactSet> <includes> <include>org.eclipse.jetty:*</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.eclipse.jetty</pattern> <shadedPattern>org.seleniumhq.jetty7</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <includeDependencySources>true</includeDependencySources> <dependencySourceIncludes> <dependencySourceInclude>org.*</dependencySourceInclude> </dependencySourceIncludes> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <jettyVersion>7.6.1.v20120215</jettyVersion> </properties> </project>