组织ID: |
io.github.classgraph |
项目ID: |
classgraph |
版本: |
4.0.3 |
最后修改时间: |
2018-08-06 10:04:44 |
包类型: |
jar |
标题: |
ClassGraph |
描述: |
Uber-fast, ultra-lightweight Java classpath and module path scanner (formerly named FastClasspathScanner). https://github.com/classgraph/classgraph
|
相关URL: |
https://github.com/classgraph/classgraph/issues |
大小: |
332.66KB |
|
Maven引入代码: |
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.0.3</version>
</dependency>
|
Gradle引入代码: |
io.github.classgraph:classgraph:4.0.3
|
下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.0.3</version>
<name>ClassGraph</name>
<description>
Uber-fast, ultra-lightweight Java classpath and module path scanner (formerly named FastClasspathScanner). https://github.com/classgraph/classgraph
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<issueManagement>
<url>https://github.com/classgraph/classgraph/issues</url>
</issueManagement>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Luke Hutchison</name>
<email>luke.hutch@gmail.com</email>
<organization>--</organization>
<organizationUrl>https://github.com/lukehutch</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!-- See http://java.dzone.com/articles/deploy-maven-central and http://central.sonatype.org/pages/apache-maven.html -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<!-- This plugin must be inside pluginManagement -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.2.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Category>Utilities</Bundle-Category>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Description>${project.description}</Bundle-Description>
<Bundle-Vendor>Luke Hutchison</Bundle-Vendor>
</instructions>
</configuration>
</plugin>
<plugin>
<!-- This plugin doesn't work inside pluginManagement, for some reason -->
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0-SP4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.url</groupId>
<artifactId>pax-url-aether</artifactId>
<version>2.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.25</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.2.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git@github.com:classgraph/classgraph.git</connection>
<developerConnection>scm:git:git@github.com:classgraph/classgraph.git</developerConnection>
<url>https://github.com/classgraph/classgraph</url>
<tag>classgraph-4.0.3</tag>
</scm>
<url>https://github.com/classgraph/classgraph</url>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<!-- This plugin must be inside pluginManagement -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
<executions>
<execution>
<id>default-testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<!-- fork is needed for different java versions for main and test,
see: https://goo.gl/l0qZKb -->
<fork>true</fork>
<executable>${testCompileJdkPath}/bin/javac</executable>
<source>1.8</source>
<target>1.8</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
io.github.classgraph.TypeArgument$1.class
io.github.classgraph.ClassLoaderHandler$DelegationOrder.class
io.github.classgraph.Scanner$1.class
io.github.classgraph.ClassGraph$ClasspathElementFilter.class
io.github.classgraph.HierarchicalTypeSignature.class
io.github.classgraph.ClassGraph.class
io.github.classgraph.FieldInfoList.class
io.github.classgraph.ResourceList$InputStreamConsumer.class
io.github.classgraph.ScanResult$SerializationFormat.class
io.github.classgraph.ScanResult.class
io.github.classgraph.Scanner$ClasspathOrModulePathEntryToClasspathElementMap.class
io.github.classgraph.AnnotationInfoList$1.class
io.github.classgraph.utils.WorkQueue.class
io.github.classgraph.utils.FileUtils$1.class
io.github.classgraph.utils.NestedJarHandler$6.class
io.github.classgraph.utils.InterruptionChecker.class
io.github.classgraph.utils.VersionFinder.class
io.github.classgraph.utils.NestedJarHandler$4.class
io.github.classgraph.utils.ReflectionUtils.class
io.github.classgraph.utils.NestedJarHandler$3$1.class
io.github.classgraph.utils.ClasspathFinder.class
io.github.classgraph.Resource.class
io.github.classgraph.classloaderhandler.WebsphereLibertyClassLoaderHandler.class
io.github.classgraph.classloaderhandler.WebsphereTraditionalClassLoaderHandler.class
io.github.classgraph.classloaderhandler.EquinoxClassLoaderHandler.class
io.github.classgraph.classloaderhandler.OSGiDefaultClassLoaderHandler.class
io.github.classgraph.classloaderhandler.ClassLoaderHandlerRegistry.class
io.github.classgraph.ClasspathElement.class
io.github.classgraph.Scanner$2.class
io.github.classgraph.Scanner$5.class
io.github.classgraph.ModuleRef.class
io.github.classgraph.TypeArgument.class
io.github.classgraph.ClassInfo$1.class
io.github.classgraph.ClassTypeSignature.class
io.github.classgraph.utils.Recycler.class
io.github.classgraph.utils.LogNode.class
io.github.classgraph.utils.InputStreamOrByteBufferAdapter.class
io.github.classgraph.utils.ClasspathOrder.class
io.github.classgraph.utils.Parser$ParseException.class
io.github.classgraph.utils.InputStreamOrByteBufferAdapter$ByteBufferAdapter.class
io.github.classgraph.json.JSONReference.class
io.github.classgraph.json.FieldTypeInfo.class
io.github.classgraph.json.ClassFieldCache$NoConstructor.class
io.github.classgraph.json.ClassFieldCache.class
io.github.classgraph.json.JSONSerializer.class
io.github.classgraph.json.ParameterizedTypeImpl.class
io.github.classgraph.json.JSONDeserializer$ObjectInstantiation.class
io.github.classgraph.json.JSONUtils.class
io.github.classgraph.ClassInfoUnlinked.class
io.github.classgraph.classloaderhandler.FelixClassLoaderHandler.class
io.github.classgraph.classloaderhandler.WeblogicClassLoaderHandler.class
io.github.classgraph.classloaderhandler.EquinoxContextFinderClassLoaderHandler.class
io.github.classgraph.classloaderhandler.URLClassLoaderHandler.class
io.github.classgraph.classloaderhandler.ClassLoaderHandlerRegistry$ClassLoaderHandlerRegistryEntry.class
io.github.classgraph.ClasspathElementZip.class
module-info.java
META-INF/maven/io.github.classgraph/classgraph/pom.properties
io.github.classgraph.FieldInfoList$1.class
io.github.classgraph.utils.Recycler$Recyclable.class
io.github.classgraph.utils.JarfileMetadataReader.class
io.github.classgraph.utils.WorkQueue$WorkUnitProcessor.class
io.github.classgraph.utils.SingletonMap.class
io.github.classgraph.utils.JarUtils.class
io.github.classgraph.json.JSONObject.class
io.github.classgraph.json.JSONArray.class
io.github.classgraph.TypeVariableSignature.class
io.github.classgraph.ScanResultObject.class
io.github.classgraph.ClasspathElementModule.class
io.github.classgraph.ClassInfoList$1.class
io.github.classgraph.ClassInfoList.class
io.github.classgraph.AnnotationInfoList$AnnotationInfoFilter.class
io.github.classgraph.MethodTypeSignature.class
io.github.classgraph.ScanSpec.class
io.github.classgraph.MethodParameterInfo.class
io.github.classgraph.ClassGraph$ScanResultProcessor.class
io.github.classgraph.ScanSpec$ScanSpecPathMatch.class
io.github.classgraph.Scanner$3.class
io.github.classgraph.ClassLoaderHandler.class
io.github.classgraph.ClassInfoList$ClassInfoFilter.class
io.github.classgraph.Scanner$ClassfileParserChunk.class
io.github.classgraph.ClassInfo$ClassType.class
io.github.classgraph.ArrayTypeSignature.class
io.github.classgraph.ReferenceTypeSignature.class
io.github.classgraph.TypeSignature.class
io.github.classgraph.ClasspathElementDir.class
io.github.classgraph.ScanResult$1.class
io.github.classgraph.FieldInfoList$FieldInfoFilter.class
io.github.classgraph.ClassfileBinaryParser.class
META-INF/maven/io.github.classgraph/classgraph/pom.xml
io.github.classgraph.ClassInfo.class
io.github.classgraph.utils.CallStackReader$1.class
io.github.classgraph.utils.AutoCloseableFutureListWithCompletionBarrier.class
io.github.classgraph.utils.ReflectionUtils$1.class
io.github.classgraph.utils.NestedJarHandler$2.class
io.github.classgraph.utils.NestedJarHandler$5.class
io.github.classgraph.utils.WhiteBlackList$WhiteBlackListWholeString.class
io.github.classgraph.utils.URLPathEncoder.class
io.github.classgraph.utils.SingletonMap$SingletonHolder.class
io.github.classgraph.utils.WorkQueue$1.class
io.github.classgraph.utils.WhiteBlackList$WhiteBlackListPrefix.class
io.github.classgraph.utils.AutoCloseableConcurrentQueue.class
io.github.classgraph.utils.WorkQueue$WorkQueuePreStartHook.class
io.github.classgraph.utils.NestedJarHandler$1.class
io.github.classgraph.utils.CallStackReader$CallerResolver.class
io.github.classgraph.AnnotationInfo.class
io.github.classgraph.TypeParameter.class
io.github.classgraph.FieldInfo.class
io.github.classgraph.ClassInfo$ReachableAndDirectlyRelatedClasses.class
io.github.classgraph.ClassGraph$FailureHandler.class
io.github.classgraph.MethodInfoList.class
io.github.classgraph.ClasspathElementModule$1.class
io.github.classgraph.MethodInfo.class
io.github.classgraph.ClasspathElementDir$1.class
io.github.classgraph.ModuleReaderProxy.class
io.github.classgraph.ClassRefOrTypeVariableSignature.class
io.github.classgraph.MethodInfoList$MethodInfoFilter.class
io.github.classgraph.ResourceList$ByteArrayConsumer.class
io.github.classgraph.ClassInfo$RelType.class
io.github.classgraph.BaseTypeSignature.class
io.github.classgraph.Scanner$4.class
io.github.classgraph.ResourceList$ByteBufferConsumer.class
io.github.classgraph.utils.ClasspathOrModulePathEntry.class
io.github.classgraph.MethodInfoList$1.class
io.github.classgraph.TypeArgument$Wildcard.class
io.github.classgraph.Scanner.class
io.github.classgraph.ObjectTypedValueWrapper.class
io.github.classgraph.classloaderhandler.AntClassLoaderHandler.class
io.github.classgraph.classloaderhandler.JPMSClassLoaderHandler.class
io.github.classgraph.classloaderhandler.FallbackClassLoaderHandler.class
io.github.classgraph.classloaderhandler.JBossClassLoaderHandler.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
assertj-core-3.1.0.jar
/org.assertj/assertj-core/3.1.0
查看assertj-core所有版本文件
cdi-api-1.0-SP4.jar
/javax.enterprise/cdi-api/1.0-SP4
查看cdi-api所有版本文件
pax-url-aether-2.5.2.jar
/org.ops4j.pax.url/pax-url-aether/2.5.2
查看pax-url-aether所有版本文件
slf4j-api-1.7.25.jar
/org.slf4j/slf4j-api/1.7.25
查看slf4j-api所有版本文件
slf4j-jdk14-1.7.25.jar
/org.slf4j/slf4j-jdk14/1.7.25
查看slf4j-jdk14所有版本文件
hibernate-jpa-2.1-api-1.0.2.Final.jar
/org.hibernate.javax.persistence/hibernate-jpa-2.1-api/1.0.2.Final
查看hibernate-jpa-2.1-api所有版本文件
|