组织ID: |
org.eclipse.jetty |
项目ID: |
jetty-jmx |
版本: |
8.1.18.v20150929 |
最后修改时间: |
2018-08-27 10:11:53 |
包类型: |
jar |
标题: |
Jetty :: JMX Management |
描述: |
JMX management artifact for jetty. |
大小: |
24.22KB |
|
Maven引入代码: |
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>8.1.18.v20150929</version>
</dependency>
|
Gradle引入代码: |
org.eclipse.jetty:jetty-jmx:8.1.18.v20150929
|
下载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.eclipse.jetty</groupId>
<artifactId>jetty-project</artifactId>
<version>8.1.18.v20150929</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jetty-jmx</artifactId>
<name>Jetty :: JMX Management</name>
<description>JMX management artifact for jetty.</description>
<url>http://www.eclipse.org/jetty</url>
<properties>
<bundle-symbolic-name>${project.groupId}.jmx</bundle-symbolic-name>
</properties>
<build>
<plugins>
<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.management.*,*</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.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.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<onlyAnalyze>org.eclipse.jetty.jmx.*</onlyAnalyze>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
about.html
org.eclipse.jetty.jmx.ConnectorServer.class
org.eclipse.jetty.jmx.MBeanContainer.class
org.eclipse.jetty.jmx.ObjectMBean.class
org/eclipse/jetty/util/component/jmx/AggregateLifeCycle-mbean.properties
org/eclipse/jetty/util/component/jmx/Dumpable-mbean.properties
org/eclipse/jetty/util/component/jmx/LifeCycle-mbean.properties
org/eclipse/jetty/util/log/jmx/Log-mbean.properties
org.eclipse.jetty.util.log.jmx.LogMBean.class
org/eclipse/jetty/util/thread/jmx/QueuedThreadPool-mbean.properties
org/eclipse/jetty/util/thread/jmx/ThreadPool-mbean.properties
META-INF/maven/org.eclipse.jetty/jetty-jmx/pom.xml
META-INF/maven/org.eclipse.jetty/jetty-jmx/pom.properties
|
依赖Jar: |
jetty-util-${project.version}.jar
/org.eclipse.jetty/jetty-util/${project.version}
查看jetty-util所有版本文件
|