jetty-server.
Jetty Server.
Here is the list of declaration for jetty-server. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jfinal</groupId> <artifactId>jetty-server</artifactId> <version>8.1.8</version> </dependency>
If you think this Maven repository POM file listing for jetty-server 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://apache.org/licenses/LICENSE-2.0.txt.
The jetty-server-8.1.8 has 4 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 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
Jetty | jetty-servlet 8.1.8.v20121106 Jetty Servlet Container | 17 |
The following plugins are used in the jetty-server-8.1.8.jar
The following packages are defined in the jetty-server-8.1.8.jar
com.sun.el com.sun.el.lang com.sun.el.parser com.sun.el.util javax.el javax.servlet javax.servlet.annotation javax.servlet.descriptor javax.servlet.http javax.servlet.jsp javax.servlet.jsp.el javax.servlet.jsp.tagext org.apache.jasper org.apache.jasper.compiler org.apache.jasper.compiler.tagplugin org.apache.jasper.runtime org.apache.jasper.security org.apache.jasper.servlet org.apache.jasper.tagplugins.jstl org.apache.jasper.xmlparser org.eclipse.jetty.ajp org.eclipse.jetty.annotations org.eclipse.jetty.client org.eclipse.jetty.client.security org.eclipse.jetty.client.webdav org.eclipse.jetty.continuation org.eclipse.jetty.deploy org.eclipse.jetty.deploy.bindings org.eclipse.jetty.deploy.graph org.eclipse.jetty.deploy.jmx org.eclipse.jetty.deploy.providers org.eclipse.jetty.deploy.util org.eclipse.jetty.http org.eclipse.jetty.http.gzip org.eclipse.jetty.http.ssl org.eclipse.jetty.io org.eclipse.jetty.io.bio org.eclipse.jetty.io.nio org.eclipse.jetty.jmx org.eclipse.jetty.jndi org.eclipse.jetty.jndi.factories org.eclipse.jetty.jndi.java org.eclipse.jetty.jndi.local org.eclipse.jetty.nested org.eclipse.jetty.plus.annotation org.eclipse.jetty.plus.jaas org.eclipse.jetty.plus.jaas.callback org.eclipse.jetty.plus.jaas.spi org.eclipse.jetty.plus.jndi org.eclipse.jetty.plus.security org.eclipse.jetty.plus.servlet org.eclipse.jetty.plus.webapp org.eclipse.jetty.rewrite.handler org.eclipse.jetty.security org.eclipse.jetty.security.authentication org.eclipse.jetty.security.jaspi org.eclipse.jetty.security.jaspi.callback org.eclipse.jetty.security.jaspi.modules org.eclipse.jetty.server org.eclipse.jetty.server.bio org.eclipse.jetty.server.handler org.eclipse.jetty.server.handler.jmx org.eclipse.jetty.server.jmx org.eclipse.jetty.server.nio org.eclipse.jetty.server.session org.eclipse.jetty.server.session.jmx org.eclipse.jetty.server.ssl org.eclipse.jetty.servlet org.eclipse.jetty.servlet.jmx org.eclipse.jetty.servlet.listener org.eclipse.jetty.servlets org.eclipse.jetty.util org.eclipse.jetty.util.ajax org.eclipse.jetty.util.component org.eclipse.jetty.util.log org.eclipse.jetty.util.log.jmx org.eclipse.jetty.util.preventers org.eclipse.jetty.util.resource org.eclipse.jetty.util.security org.eclipse.jetty.util.ssl org.eclipse.jetty.util.statistic org.eclipse.jetty.util.thread org.eclipse.jetty.webapp org.eclipse.jetty.websocket org.eclipse.jetty.xml org.glassfish.jsp.api
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"> <modelVersion>4.0.0</modelVersion> <groupId>com.jfinal</groupId> <artifactId>jetty-server</artifactId> <packaging>jar</packaging> <name>jetty-server</name> <version>8.1.8</version> <url>http://jfinal.googlecode.com</url> <description>Jetty Server</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <issueManagement> <system>Github Issue</system> <url>http://github.com/jfinal/jetty-server/issues</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:jfinal/jetty-server.git</connection> <developerConnection>scm:git:git@github.com:jfinal/jetty-server.git</developerConnection> <url>git@github.com:jfinal/jetty-server.git</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <repositories> </repositories> <build> <resources> <resource> <directory>src/main/resources</directory> <targetPath>org/eclipse/jetty/webapp</targetPath> <includes> <include>webdefault.xml</include> </includes> </resource> <resource> <directory>src/main/config/etc</directory> <targetPath>org/eclipse/jetty/webapp</targetPath> <filtering>false</filtering> <includes> <include>webdefault.xml</include> </includes> </resource> </resources> <plugins> <!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>config</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Import-Package>javax.servlet.*;version="2.6.0",*</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> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <onlyAnalyze>org.eclipse.jetty.webapp.*</onlyAnalyze> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-xml</artifactId> <version>8.1.8.v20121106</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.8.2</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>8.1.8.v20121106</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jmx</artifactId> <version>8.1.8.v20121106</version> <optional>true</optional> </dependency> </dependencies> </project>