Download asm-1.0.2.jar file

Introduction

You can download asm-1.0.2.jar in this page.

License

Open Source License

Type List

asm-1.0.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.minidev/asm/pom.properties
META-INF/maven/net.minidev/asm/pom.xml
net.minidev.asm.ASMUtil.class
net.minidev.asm.Accessor.class
net.minidev.asm.BasicFiledFilter.class
net.minidev.asm.BeansAccess.class
net.minidev.asm.BeansAccessBuilder.class
net.minidev.asm.BeansAccessConfig.class
net.minidev.asm.ConvertDate.class
net.minidev.asm.DefaultConverter.class
net.minidev.asm.DynamicClassLoader.class
net.minidev.asm.FieldFilter.class
net.minidev.asm.ex.ConvertException.class
net.minidev.asm.ex.NoSuchFieldException.class
org.objectweb.asm.AnnotationVisitor.class
org.objectweb.asm.AnnotationWriter.class
org.objectweb.asm.Attribute.class
org.objectweb.asm.ByteVector.class
org.objectweb.asm.ClassAdapter.class
org.objectweb.asm.ClassReader.class
org.objectweb.asm.ClassVisitor.class
org.objectweb.asm.ClassWriter.class
org.objectweb.asm.Edge.class
org.objectweb.asm.FieldVisitor.class
org.objectweb.asm.FieldWriter.class
org.objectweb.asm.Frame.class
org.objectweb.asm.Handler.class
org.objectweb.asm.Item.class
org.objectweb.asm.Label.class
org.objectweb.asm.MethodAdapter.class
org.objectweb.asm.MethodVisitor.class
org.objectweb.asm.MethodWriter.class
org.objectweb.asm.Opcodes.class
org.objectweb.asm.Type.class
org.objectweb.asm.signature.SignatureReader.class
org.objectweb.asm.signature.SignatureVisitor.class
org.objectweb.asm.signature.SignatureWriter.class

Pom

asm-1.0.2.pom file content.

<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">
	<!-- this POM is released under an Apache 2.0 license -->
	<modelVersion>4.0.0</modelVersion>

	<artifactId>asm</artifactId>
	<packaging>bundle</packaging>
	<version>1.0.2</version>

	<parent>
		<groupId>net.minidev</groupId>
		<artifactId>parent</artifactId>
		<version>2.1.0</version>
		<relativePath>../parent/pom.xml</relativePath>
	</parent>

	<name>ASM helper Minidev</name>

	<description>
	ASM Optimisation Package
  </description>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>asm</groupId>
			<artifactId>asm</artifactId>
			<version>3.3.1</version>
		</dependency>
		<!-- <dependency> -->
		<!-- <groupId>asm</groupId> -->
		<!-- <artifactId>asm-util</artifactId> -->
		<!-- <version>3.3.1</version> -->
		<!-- </dependency> -->
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>2.3.7</version>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
						<Bundle-Name>${project.artifactId}</Bundle-Name>
						<Bundle-Version>${project.version}</Bundle-Version>
						<Export-Package>net.minidev.asm,net.minidev.asm.ex</Export-Package>
						<!-- Private-Package></Private-Package -->
						<Embed-Dependency>asm;groupId=asm;inline=true</Embed-Dependency>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>net.minidev</groupId>
   <artifactId>asm</artifactId>
   <version>1.0.2</version>
</dependency>

Download

If you think the following asm-1.0.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download asm-1.0.2.jar file




PreviousNext

Related