组织ID: |
org.mortbay.jetty |
项目ID: |
jetty-maven-plugin |
版本: |
8.0.3.v20111011 |
最后修改时间: |
2018-08-06 13:13:52 |
包类型: |
maven-plugin |
标题: |
Jetty :: Jetty Maven Plugin |
大小: |
67.44KB |
|
Maven引入代码: |
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.0.3.v20111011</version>
</dependency>
|
Gradle引入代码: |
org.mortbay.jetty:jetty-maven-plugin:8.0.3.v20111011
|
下载Jar包: |
|
POM文件内容: |
<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>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-integration-project</artifactId>
<version>8.0.3.v20111011</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Jetty :: Jetty Maven Plugin</name>
<properties>
<mavenVersion>3.0.3</mavenVersion>
<pluginToolsVersion>2.9</pluginToolsVersion>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<verbose>false</verbose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>${pluginToolsVersion}</version>
<executions>
<execution>
<id>exec-plugin-doc</id>
<phase>generate-sources</phase>
<goals>
<goal>xdoc</goal>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty-version}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-api</artifactId>
<version>${pluginToolsVersion}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-plus</artifactId>
<version>${jetty-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jndi</artifactId>
<version>${jetty-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${jetty-version}</version>
</dependency>
<!-- jsp -->
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jsp-impl</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2</version>
</dependency>
<!-- jstl -->
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- el -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>el-impl</artifactId>
<version>2.2</version>
</dependency>
<!-- ecj -->
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>3.7</version>
</dependency>
<!-- servlet api -->
<dependency>
<groupId>${servlet.spec.groupId}</groupId>
<artifactId>${servlet.spec.artifactId}</artifactId>
<version>${servlet.spec.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>${jetty-version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-websocket</artifactId>
<version>${jetty-version}</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.1</version>
<configuration>
<dependencyLocationEnabled>false</dependencyLocationEnabled>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>project-team</report>
<report>mailing-list</report>
<report>cim</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.mortbay.jetty.plugin.JettyDeployWar.class
org.mortbay.jetty.plugin.MavenAnnotationConfiguration.class
org.mortbay.jetty.plugin.JettyStopMojo.class
org.mortbay.jetty.plugin.MavenWebInfConfiguration.class
org.mortbay.jetty.plugin.JettyRunMojo$1.class
org.mortbay.jetty.plugin.HelpMojo.class
org.mortbay.jetty.plugin.JettyServer.class
org.mortbay.jetty.plugin.Monitor.class
org.mortbay.jetty.plugin.JettyRunForkedMojo$ConsoleStreamer.class
org.mortbay.jetty.plugin.JettyWebAppContext.class
org.mortbay.jetty.plugin.SystemProperty.class
org.mortbay.jetty.plugin.JettyRunForkedMojo$ShutdownThread.class
org.mortbay.jetty.plugin.MavenAnnotationConfiguration$1.class
org.mortbay.jetty.plugin.ScanTargetPattern.class
org.mortbay.jetty.plugin.JettyRunMojo.class
org.mortbay.jetty.plugin.PluginLog.class
org.mortbay.jetty.plugin.JettyRunWarMojo$1.class
org.mortbay.jetty.plugin.AbstractJettyMojo.class
org.mortbay.jetty.plugin.Starter.class
org.mortbay.jetty.plugin.JettyRunWarMojo.class
org.mortbay.jetty.plugin.JettyRunForkedMojo.class
org.mortbay.jetty.plugin.ConsoleScanner.class
org.mortbay.jetty.plugin.JettyRunWarExplodedMojo.class
org.mortbay.jetty.plugin.JettyRunWarExplodedMojo$1.class
org.mortbay.jetty.plugin.SystemProperties.class
META-INF/maven/plugin.xml
about.html
META-INF/maven/org.mortbay.jetty/jetty-maven-plugin/pom.xml
META-INF/maven/org.mortbay.jetty/jetty-maven-plugin/pom.properties
|
依赖Jar: |
jetty-util-${jetty-version}.jar
/org.eclipse.jetty/jetty-util/${jetty-version}
查看jetty-util所有版本文件
jetty-webapp-${jetty-version}.jar
/org.eclipse.jetty/jetty-webapp/${jetty-version}
查看jetty-webapp所有版本文件
maven-plugin-api-${mavenVersion}.jar
/org.apache.maven/maven-plugin-api/${mavenVersion}
查看maven-plugin-api所有版本文件
maven-artifact-${mavenVersion}.jar
/org.apache.maven/maven-artifact/${mavenVersion}
查看maven-artifact所有版本文件
maven-core-${mavenVersion}.jar
/org.apache.maven/maven-core/${mavenVersion}
查看maven-core所有版本文件
maven-plugin-tools-api-${pluginToolsVersion}.jar
/org.apache.maven.plugin-tools/maven-plugin-tools-api/${pluginToolsVersion}
查看maven-plugin-tools-api所有版本文件
jetty-plus-${jetty-version}.jar
/org.eclipse.jetty/jetty-plus/${jetty-version}
查看jetty-plus所有版本文件
jetty-jndi-${jetty-version}.jar
/org.eclipse.jetty/jetty-jndi/${jetty-version}
查看jetty-jndi所有版本文件
jetty-jmx-${jetty-version}.jar
/org.eclipse.jetty/jetty-jmx/${jetty-version}
查看jetty-jmx所有版本文件
jsp-impl-2.2.jar
/org.glassfish.web/jsp-impl/2.2
查看jsp-impl所有版本文件
jsp-api-2.2.jar
/javax.servlet.jsp/jsp-api/2.2
查看jsp-api所有版本文件
jstl-api-1.2.jar
/javax.servlet.jsp.jstl/jstl-api/1.2
查看jstl-api所有版本文件
jstl-impl-1.2.jar
/org.glassfish.web/jstl-impl/1.2
查看jstl-impl所有版本文件
el-api-2.2.jar
/javax.el/el-api/2.2
查看el-api所有版本文件
el-impl-2.2.jar
/org.glassfish.web/el-impl/2.2
查看el-impl所有版本文件
ecj-3.7.jar
/org.eclipse.jdt.core.compiler/ecj/3.7
查看ecj所有版本文件
${servlet.spec.artifactId}-${servlet.spec.version}.jar
/${servlet.spec.groupId}/${servlet.spec.artifactId}/${servlet.spec.version}
查看${servlet.spec.artifactId}所有版本文件
jetty-annotations-${jetty-version}.jar
/org.eclipse.jetty/jetty-annotations/${jetty-version}
查看jetty-annotations所有版本文件
jetty-websocket-${jetty-version}.jar
/org.eclipse.jetty/jetty-websocket/${jetty-version}
查看jetty-websocket所有版本文件
|