组织ID: |
org.mortbay.jetty |
项目ID: |
jetty-embedded |
版本: |
6.0.0 |
最后修改时间: |
2019-10-23 21:55:47 |
包类型: |
jar |
标题: |
Embedded examples |
大小: |
17.90KB |
|
Maven引入代码: |
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-embedded</artifactId>
<version>6.0.0</version>
</dependency>
|
Gradle引入代码: |
org.mortbay.jetty:jetty-embedded:6.0.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?><project>
<parent>
<artifactId>project</artifactId>
<groupId>org.mortbay.jetty</groupId>
<version>6.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-embedded</artifactId>
<name>Embedded examples</name>
<version>6.0.0</version>
<url>http://jetty.mortbay.org</url>
<build>
<defaultGoal>install</defaultGoal>
</build>
<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>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>-------------------------------------------------------------</echo>
<echo>*** Running Embedded Tests ***</echo>
<echo>-------------------------------------------------------------</echo>
<java classname="RunEmbedded">
<classpath>
<path refid="maven.compile.classpath"></path>
<path refid="maven.test.classpath"></path>
<path refid="maven.dependency.classpath"></path>
</classpath>
</java>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jsp-api-2.1</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<status>deployed</status>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.mortbay.jetty.example.FileServer.class
org.mortbay.jetty.example.OneServletContext$HelloServlet.class
org.mortbay.jetty.example.OneServletContext.class
org.mortbay.jetty.example.ManyServletContexts$HelloServlet.class
org.mortbay.jetty.example.ManyServletContexts.class
org.mortbay.jetty.example.ManyHandlers$ParamHandler.class
org.mortbay.jetty.example.ManyHandlers$HelloHandler.class
org.mortbay.jetty.example.ManyHandlers.class
org.mortbay.jetty.example.OneContext$HelloHandler.class
org.mortbay.jetty.example.OneContext.class
org.mortbay.jetty.example.MinimalServlets$HelloServlet.class
org.mortbay.jetty.example.MinimalServlets.class
org.mortbay.jetty.example.OneHandler$HelloHandler.class
org.mortbay.jetty.example.OneHandler.class
org.mortbay.jetty.example.LikeJettyXml.class
org.mortbay.jetty.example.ManyContexts$HelloHandler.class
org.mortbay.jetty.example.ManyContexts.class
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.xml
META-INF/maven/org.mortbay.jetty/jetty-embedded/pom.properties
|
依赖Jar: |
jetty-6.0.0.jar
/org.mortbay.jetty/jetty/6.0.0
查看jetty所有版本文件
jsp-api-2.1-6.0.0.jar
/org.mortbay.jetty/jsp-api-2.1/6.0.0
查看jsp-api-2.1所有版本文件
|