组织ID: |
com.esotericsoftware |
项目ID: |
reflectasm |
版本: |
1.11.9 |
最后修改时间: |
2019-03-20 15:54:42 |
包类型: |
jar |
标题: |
ReflectASM |
描述: |
High performance Java reflection using code generation |
相关URL: |
https://github.com/EsotericSoftware/reflectasm |
大小: |
70.57KB |
|
Maven引入代码: |
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>reflectasm</artifactId>
<version>1.11.9</version>
</dependency>
|
Gradle引入代码: |
com.esotericsoftware:reflectasm:1.11.9
|
下载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">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.esotericsoftware</groupId>
<artifactId>reflectasm</artifactId>
<packaging>bundle</packaging>
<name>ReflectASM</name>
<version>1.11.9</version>
<description>High performance Java reflection using code generation</description>
<url>https://github.com/EsotericSoftware/reflectasm</url>
<developers>
<developer>
<id>nathan.sweet</id>
<name>Nathan Sweet</name>
<email>nathan.sweet@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>3-Clause BSD License</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:EsotericSoftware/reflectasm.git</connection>
<developerConnection>scm:git:git@github.com:EsotericSoftware/reflectasm.git</developerConnection>
<url>https://github.com/EsotericSoftware/reflectasm</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>default-resources</id>
<phase>none</phase>
</execution>
<execution>
<id>default-testResources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>com.esotericsoftware.reflectasm</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<shadedArtifactAttached>false</shadedArtifactAttached>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>com.esotericsoftware.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>com.esotericsoftware.reflectasm*</Export-Package>
<Import-Package>!org.objectweb.asm.*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/com.esotericsoftware/reflectasm/pom.properties
META-INF/maven/com.esotericsoftware/reflectasm/pom.xml
com.esotericsoftware.reflectasm.AccessClassLoader.class
com.esotericsoftware.reflectasm.ConstructorAccess.class
com.esotericsoftware.reflectasm.FieldAccess.class
com.esotericsoftware.reflectasm.MethodAccess.class
com.esotericsoftware.reflectasm.PublicConstructorAccess.class
com.esotericsoftware.asm.AnnotationVisitor.class
com.esotericsoftware.asm.AnnotationWriter.class
com.esotericsoftware.asm.Attribute.class
com.esotericsoftware.asm.ByteVector.class
com.esotericsoftware.asm.ClassReader.class
com.esotericsoftware.asm.ClassVisitor.class
com.esotericsoftware.asm.ClassWriter.class
com.esotericsoftware.asm.Context.class
com.esotericsoftware.asm.Edge.class
com.esotericsoftware.asm.FieldVisitor.class
com.esotericsoftware.asm.FieldWriter.class
com.esotericsoftware.asm.Frame.class
com.esotericsoftware.asm.Handle.class
com.esotericsoftware.asm.Handler.class
com.esotericsoftware.asm.Item.class
com.esotericsoftware.asm.Label.class
com.esotericsoftware.asm.MethodVisitor.class
com.esotericsoftware.asm.MethodWriter.class
com.esotericsoftware.asm.Opcodes.class
com.esotericsoftware.asm.Type.class
com.esotericsoftware.asm.TypePath.class
|
依赖Jar: |
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
|