Download jetty-embedded-6.1.11.jar file

Introduction

You can download jetty-embedded-6.1.11.jar in this page.

License

Open Source

Type List

jetty-embedded-6.1.11.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.properties
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.xml
org.mortbay.jetty.example.FileServer.class
org.mortbay.jetty.example.FromXmlConfiguration.class
org.mortbay.jetty.example.LikeJettyXml.class
org.mortbay.jetty.example.ManyContexts.class
org.mortbay.jetty.example.ManyHandlers.class
org.mortbay.jetty.example.ManyServletContexts.class
org.mortbay.jetty.example.MinimalServlets.class
org.mortbay.jetty.example.OneContext.class
org.mortbay.jetty.example.OneHandler.class
org.mortbay.jetty.example.OneServletContext.class
org.mortbay.jetty.example.OneWebApp.class

Pom

jetty-embedded-6.1.11.pom file content.

<?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">
  <parent>
    <artifactId>project</artifactId>
    <groupId>org.mortbay.jetty</groupId>
    <version>6.1.11</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>jetty-embedded</artifactId>
  <name>Embedded examples</name>
  <url>http://jetty.mortbay.org</url>
  <build>
    <defaultGoal>install</defaultGoal>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet.jsp</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.1</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <profiles>
    <profile>
      <id>run</id>
      <activation>
          <property><name>runEmbedded</name></property>
      </activation>
      <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>run</id>
            <phase>test</phase>
            <configuration>
              <tasks>
                <echo>-------------------------------------------------------------</echo>
                <echo>***                Running Embedded Tests                 ***</echo>
                <echo>-------------------------------------------------------------</echo>
                <java classname="RunEmbedded">
                  <classpath>
                   <path refid="maven.compile.classpath" />
                   <path refid="maven.test.classpath" />
                   <path refid="maven.dependency.classpath" />
                  </classpath>
                </java>
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>

      </build>
    </profile>
  </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.mortbay.jetty</groupId>
   <artifactId>jetty-embedded</artifactId>
   <version>6.1.11</version>
</dependency>

Download

If you think the following jetty-embedded-6.1.11.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jetty-embedded-6.1.11.jar file




PreviousNext

Related