组织ID: |
com.j256.simplejmx |
项目ID: |
simplejmx |
版本: |
1.15 |
最后修改时间: |
2018-09-01 12:39:56 |
包类型: |
jar |
标题: |
Simple JMX |
描述: |
Simple JMX Classes |
相关URL: |
http://256stuff.com/sources/simplejmx/ |
大小: |
79.35KB |
|
Maven引入代码: |
<dependency>
<groupId>com.j256.simplejmx</groupId>
<artifactId>simplejmx</artifactId>
<version>1.15</version>
</dependency>
|
Gradle引入代码: |
com.j256.simplejmx:simplejmx:1.15
|
下载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">
<!-- simplejmx pom configuration file for maven -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.j256.simplejmx</groupId>
<artifactId>simplejmx</artifactId>
<version>1.15</version>
<packaging>jar</packaging>
<name>Simple JMX</name>
<url>http://256stuff.com/sources/simplejmx/</url>
<description>Simple JMX Classes</description>
<licenses>
<license>
<name>ISC License</name>
<distribution>repo</distribution>
</license>
</licenses>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<properties>
<!-- optional dependency versions -->
<spring-version>3.1.0.RELEASE</spring-version>
<jetty-version>8.1.22.v20160922</jetty-version>
<!-- test dependency versions -->
<easymock-version>2.3</easymock-version>
<junit-version>4.8.1</junit-version>
<htmlunit-version>2.13</htmlunit-version>
</properties>
<scm>
<url>https://github.com/j256/simplejmx</url>
<connection>scm:git:ssh://git@github.com/j256/simplejmx.git</connection>
<developerConnection>scm:git:ssh://git@github.com/j256/simplejmx.git</developerConnection>
</scm>
<developers>
<developer>
<id>gray</id>
<name>Gray Watson</name>
<url>http://256stuff.com/gray/</url>
<organization>256stuff.com</organization>
<organizationUrl>http://256stuff.com/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<profiles>
<profile>
<id>st</id>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
<build>
<finalName>simplejmx</finalName>
<!-- Resources -->
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<!-- Test Resources -->
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<!-- Plugins -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release -DgpgPhase=${gpgPhase} -Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<showPackage>false</showPackage>
<additionalparam>-tag inheritDoc:X</additionalparam>
</configuration>
</execution>
</executions>
<configuration>
<showPackage>false</showPackage>
<bottom>
This documentation content is licensed by Gray Watson under the
<a
href="http://creativecommons.org/licenses/by-sa/3.0/" >Creative Commons Attribution-Share Alike 3.0 License.
</a> </bottom>
<additionalparam>-tag inheritDoc:X</additionalparam>
<excludePackageNames>
</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorId>jar-with-dependencies</descriptorId>
<archive>
<manifest>
<mainClass>com.j256.simplejmx.client.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>com.j256.simplejmx.client.Main</mainClass>
</manifest>
<manifestEntries>
<Application-Version>${appVersion}</Application-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- j256 Releases (Code releases for j256.com) <j256@256.com> -->
<keyname>D3412AC1</keyname>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0-beta-1,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- optional dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring-version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring-version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty-version}</version>
<optional>true</optional>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>${easymock-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>${htmlunit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.j256.simplejmx.client.ClientUtils.class
com.j256.simplejmx.client.CommandLineJmxClient$1.class
com.j256.simplejmx.client.CommandLineJmxClient$2.class
com.j256.simplejmx.client.CommandLineJmxClient$3.class
com.j256.simplejmx.client.CommandLineJmxClient$4.class
com.j256.simplejmx.client.CommandLineJmxClient$LineReader.class
com.j256.simplejmx.client.CommandLineJmxClient.class
com.j256.simplejmx.client.JmxClient.class
com.j256.simplejmx.client.Main.class
com.j256.simplejmx.common.BaseJmxSelfNaming.class
com.j256.simplejmx.common.IoUtils.class
com.j256.simplejmx.common.JmxAttributeField.class
com.j256.simplejmx.common.JmxAttributeFieldInfo.class
com.j256.simplejmx.common.JmxAttributeMethod.class
com.j256.simplejmx.common.JmxAttributeMethodInfo.class
com.j256.simplejmx.common.JmxFolderName.class
com.j256.simplejmx.common.JmxOperation.class
com.j256.simplejmx.common.JmxOperationInfo$OperationAction.class
com.j256.simplejmx.common.JmxOperationInfo.class
com.j256.simplejmx.common.JmxResource.class
com.j256.simplejmx.common.JmxResourceInfo.class
com.j256.simplejmx.common.JmxSelfNaming.class
com.j256.simplejmx.common.ObjectNameUtil.class
com.j256.simplejmx.server.JmxServer$LocalSocketFactory.class
com.j256.simplejmx.server.JmxServer.class
com.j256.simplejmx.server.JmxUsernamePasswordAuthenticator.class
com.j256.simplejmx.server.PublishAllBeanWrapper.class
com.j256.simplejmx.server.ReflectionMbean$1.class
com.j256.simplejmx.server.ReflectionMbean$AttributeFieldInfo.class
com.j256.simplejmx.server.ReflectionMbean$AttributeMethodInfo.class
com.j256.simplejmx.server.ReflectionMbean$MethodSignature.class
com.j256.simplejmx.server.ReflectionMbean$NameParams.class
com.j256.simplejmx.server.ReflectionMbean.class
com.j256.simplejmx.spring.BeanPublisher.class
com.j256.simplejmx.spring.JmxBean.class
com.j256.simplejmx.web.Jetty8ConnectorFactory.class
com.j256.simplejmx.web.Jetty9ConnectorFactory.class
com.j256.simplejmx.web.JettyConnectorFactory.class
com.j256.simplejmx.web.JmxWebHandler$1.class
com.j256.simplejmx.web.JmxWebHandler$DomainQueryExp.class
com.j256.simplejmx.web.JmxWebHandler$ObjectNameComparator.class
com.j256.simplejmx.web.JmxWebHandler.class
com.j256.simplejmx.web.JmxWebServer.class
META-INF/maven/com.j256.simplejmx/simplejmx/pom.xml
META-INF/maven/com.j256.simplejmx/simplejmx/pom.properties
|
依赖Jar: |
spring-beans-${spring-version}.jar
/org.springframework/spring-beans/${spring-version}
查看spring-beans所有版本文件
spring-context-${spring-version}.jar
/org.springframework/spring-context/${spring-version}
查看spring-context所有版本文件
jetty-server-${jetty-version}.jar
/org.eclipse.jetty/jetty-server/${jetty-version}
查看jetty-server所有版本文件
junit-${junit-version}.jar
/junit/junit/${junit-version}
查看junit所有版本文件
easymock-${easymock-version}.jar
/org.easymock/easymock/${easymock-version}
查看easymock所有版本文件
htmlunit-${htmlunit-version}.jar
/net.sourceforge.htmlunit/htmlunit/${htmlunit-version}
查看htmlunit所有版本文件
|