组织ID: |
org.mortbay.jetty |
项目ID: |
jetty-embedded |
版本: |
6.1.26 |
最后修改时间: |
2018-08-06 16:02:19 |
包类型: |
jar |
标题: |
Embedded examples |
大小: |
21.60KB |
|
Maven引入代码: |
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-embedded</artifactId>
<version>6.1.26</version>
</dependency>
|
Gradle引入代码: |
org.mortbay.jetty:jetty-embedded:6.1.26
|
下载Jar包: |
|
POM文件内容: |
<?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.26</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-embedded</artifactId>
<name>Embedded examples</name>
<dependencies>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-sslengine</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>
<profile>
<id>jardeps</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>create-lib-dir-in-target</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.mortbay.jetty.example.OneServletContext$HelloServlet.class
org.mortbay.jetty.example.OneContext.class
org.mortbay.jetty.example.OneContext$HelloHandler.class
org.mortbay.jetty.example.ManyHandlers.class
org.mortbay.jetty.example.OneHandler.class
org.mortbay.jetty.example.ManyServletContexts.class
org.mortbay.jetty.example.OneWebApp.class
org.mortbay.jetty.example.LikeJettyXml.class
org.mortbay.jetty.example.ManyContexts$HelloHandler.class
org.mortbay.jetty.example.ManyContexts.class
org.mortbay.jetty.example.OneHandler$HelloHandler.class
org.mortbay.jetty.example.FromXmlConfiguration.class
org.mortbay.jetty.example.MinimalServlets$HelloServlet.class
org.mortbay.jetty.example.MinimalServlets.class
org.mortbay.jetty.example.OneServletContext.class
org.mortbay.jetty.example.ManyServletContexts$HelloServlet.class
org.mortbay.jetty.example.ManyHandlers$ParamHandler.class
org.mortbay.jetty.example.ManyHandlers$HelloHandler.class
org.mortbay.jetty.example.FileServer.class
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.xml
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.properties
|
依赖Jar: |
jetty-${project.version}.jar
/org.mortbay.jetty/jetty/${project.version}
查看jetty所有版本文件
jetty-sslengine-${project.version}.jar
/org.mortbay.jetty/jetty-sslengine/${project.version}
查看jetty-sslengine所有版本文件
jsp-api-2.1.jar
/javax.servlet.jsp/jsp-api/2.1
查看jsp-api所有版本文件
|