组织ID: |
com.esotericsoftware.reflectasm |
项目ID: |
reflectasm |
版本: |
1.07 |
最后修改时间: |
2018-07-26 18:14:02 |
包类型: |
jar |
标题: |
ReflectASM |
描述: |
High performance Java reflection using code generation |
相关URL: |
http://code.google.com/p/reflectasm/ |
大小: |
17.26KB |
|
Maven引入代码: |
<dependency>
<groupId>com.esotericsoftware.reflectasm</groupId>
<artifactId>reflectasm</artifactId>
<version>1.07</version>
</dependency>
|
Gradle引入代码: |
com.esotericsoftware.reflectasm:reflectasm:1.07
|
下载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>com.esotericsoftware.reflectasm</groupId>
<artifactId>reflectasm</artifactId>
<version>1.07</version>
<packaging>jar</packaging>
<name>ReflectASM</name>
<description>High performance Java reflection using code generation</description>
<url>http://code.google.com/p/reflectasm/</url>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://reflectasm.googlecode.com/svn/</url>
<connection>scm:svn:http://reflectasm.googlecode.com/svn/</connection>
</scm>
<developers>
<developer>
<id>nathan.sweet</id>
<name>Nathan Sweet</name>
<email>nathan.sweet@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Set nonstandard source and test source dirs -->
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<!-- Disable resources (project has none) -->
<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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<excludes>
<exclude>**/.svn/*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<!-- remove all classes of dependencies that are not used by the project -->
<minimizeJar>true</minimizeJar>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>com.esotericsoftware.reflectasm.shaded.org.objectweb.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.esotericsoftware.reflectasm.ConstructorAccess.class
com.esotericsoftware.reflectasm.FieldAccess.class
com.esotericsoftware.reflectasm.AccessClassLoader.class
com.esotericsoftware.reflectasm.MethodAccess.class
META-INF/maven/com.esotericsoftware.reflectasm/reflectasm/pom.xml
META-INF/maven/com.esotericsoftware.reflectasm/reflectasm/pom.properties
|
依赖Jar: |
asm-4.0.jar
/org.ow2.asm/asm/4.0
查看asm所有版本文件
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
|