组织ID: |
com.googlecode |
项目ID: |
reflectasm |
版本: |
1.01 |
最后修改时间: |
2018-07-27 00:06:04 |
包类型: |
jar |
标题: |
reflectasm |
描述: |
ReflectASM is a very small Java library that provides high performance reflection by using code generation. |
相关URL: |
http://code.google.com/p/reflectasm/ |
大小: |
11.34KB |
|
Maven引入代码: |
<dependency>
<groupId>com.googlecode</groupId>
<artifactId>reflectasm</artifactId>
<version>1.01</version>
</dependency>
|
Gradle引入代码: |
com.googlecode:reflectasm:1.01
|
下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode</groupId>
<version>1.01</version>
<artifactId>reflectasm</artifactId>
<packaging>jar</packaging>
<name>reflectasm</name>
<description>ReflectASM is a very small Java library that provides high performance reflection by using code generation. </description>
<url>http://code.google.com/p/reflectasm/</url>
<licenses>
<license>
<name>BSD style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://reflectasm.googlecode.com/svn/trunk/</connection>
<url>http://code.google.com/p/reflectasm/source/browse/</url>
</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>asm</groupId>
<artifactId>asm</artifactId>
<version>3.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.esotericsoftware.reflectasm.FieldAccess.class
com.esotericsoftware.reflectasm.AccessClassLoader.class
com.esotericsoftware.reflectasm.MethodAccess.class
META-INF/maven/com.googlecode/reflectasm/pom.xml
META-INF/maven/com.googlecode/reflectasm/pom.properties
|
依赖Jar: |
asm-3.2.jar
/asm/asm/3.2
查看asm所有版本文件
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
|