组织ID: |
io.github.lukehutch |
项目ID: |
fast-classpath-scanner |
版本: |
1.2 |
最后修改时间: |
2018-11-14 11:33:37 |
包类型: |
jar |
标题: |
Fast Classpath Scanner |
描述: |
Uber-fast, ultra-lightweight Java classpath scanner. Scans the classpath by parsing the classfile binary format directly rather than by using reflection.
See https://github.com/lukehutch/fast-classpath-scanner
|
相关URL: |
https://github.com/lukehutch/fast-classpath-scanner/issues |
大小: |
29.14KB |
|
Maven引入代码: |
<dependency>
<groupId>io.github.lukehutch</groupId>
<artifactId>fast-classpath-scanner</artifactId>
<version>1.2</version>
</dependency>
|
Gradle引入代码: |
io.github.lukehutch:fast-classpath-scanner:1.2
|
下载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.lukehutch</groupId>
<artifactId>fast-classpath-scanner</artifactId>
<version>1.2</version>
<name>Fast Classpath Scanner</name>
<description>
Uber-fast, ultra-lightweight Java classpath scanner. Scans the classpath by parsing the classfile binary format directly rather than by using reflection.
See https://github.com/lukehutch/fast-classpath-scanner
</description>
<issueManagement>
<url>https://github.com/lukehutch/fast-classpath-scanner/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-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<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-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>
</execution>
</executions>
</plugin>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git@github.com:lukehutch/fast-classpath-scanner.git</connection>
<developerConnection>scm:git:git@github.com:lukehutch/fast-classpath-scanner.git</developerConnection>
<url>https://github.com/lukehutch/fast-classpath-scanner</url>
<tag>fast-classpath-scanner-1.2</tag>
</scm>
<url>https://github.com/lukehutch/fast-classpath-scanner</url>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$2.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$4.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$3.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$ClassMatcher.class
io.github.lukehutch.fastclasspathscanner.classgraph.ClassGraphBuilder.class
io.github.lukehutch.fastclasspathscanner.classgraph.InterfaceNode.class
io.github.lukehutch.fastclasspathscanner.classgraph.DAGNode.class
io.github.lukehutch.fastclasspathscanner.classgraph.ClassNode.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$FilePathMatcher.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.StaticFinalFieldMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.InterfaceMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.SubinterfaceMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.ClassAnnotationMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.SubclassMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.matchprocessor.FileMatchProcessor.class
io.github.lukehutch.fastclasspathscanner.FastClasspathScanner$1.class
META-INF/maven/io.github.lukehutch/fast-classpath-scanner/pom.xml
META-INF/maven/io.github.lukehutch/fast-classpath-scanner/pom.properties
|
依赖Jar: |
无
|