Download spring-asm-3.1.2.release.jar file

Introduction

You can download spring-asm-3.1.2.release.jar in this page.

License

The Apache Software License, Version 2.0

Type List

spring-asm-3.1.2.release.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
org.springframework.asm.AnnotationVisitor.class
org.springframework.asm.AnnotationWriter.class
org.springframework.asm.Attribute.class
org.springframework.asm.ByteVector.class
org.springframework.asm.ClassAdapter.class
org.springframework.asm.ClassReader.class
org.springframework.asm.ClassVisitor.class
org.springframework.asm.ClassWriter.class
org.springframework.asm.Edge.class
org.springframework.asm.FieldVisitor.class
org.springframework.asm.FieldWriter.class
org.springframework.asm.Handler.class
org.springframework.asm.Item.class
org.springframework.asm.Label.class
org.springframework.asm.MethodAdapter.class
org.springframework.asm.MethodVisitor.class
org.springframework.asm.MethodWriter.class
org.springframework.asm.Opcodes.class
org.springframework.asm.Type.class
org.springframework.asm.commons.AdviceAdapter.class
org.springframework.asm.commons.EmptyVisitor.class
org.springframework.asm.commons.GeneratorAdapter.class
org.springframework.asm.commons.LocalVariablesSorter.class
org.springframework.asm.commons.Method.class
org.springframework.asm.commons.SerialVersionUIDAdder.class
org.springframework.asm.commons.StaticInitMerger.class
org.springframework.asm.commons.TableSwitchGenerator.class
org.springframework.asm.signature.SignatureReader.class
org.springframework.asm.signature.SignatureVisitor.class
org.springframework.asm.signature.SignatureWriter.class

Pom

spring-asm-3.1.2.release.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.springframework</groupId>
  <artifactId>spring-asm</artifactId>
  <packaging>jar</packaging>
  <version>3.1.2.RELEASE</version>
  <parent>
    <groupId>org.springframework</groupId>
    <artifactId>spring-parent</artifactId>
    <relativePath>../org.springframework.spring-parent</relativePath>
    <version>3.1.2.RELEASE</version>
  </parent>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>jarjar</id>
            <phase>process-classes</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpathref="maven.plugin.classpath" />
                <jarjar jarfile="${project.build.directory}${file.separator}${project.build.finalName}-jarjar.jar">
                  <zipfileset src="${project.build.directory}/jarjar-staging/com.springsource.org.objectweb.asm.jar"/>
                  <zipfileset src="${project.build.directory}/jarjar-staging/com.springsource.org.objectweb.asm.commons.jar"/>
                  <rule pattern="org.objectweb.asm.**" result="org.springframework.asm.@1"/>
                </jarjar>
                <unjar src="${project.build.directory}${file.separator}${project.build.finalName}-jarjar.jar"
                    dest="${project.build.outputDirectory}">
                  <patternset>
                    <include name="**/*.class"/>
                    <exclude name="*"/>
                  </patternset>
                </unjar>
              </tasks>
            </configuration>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>com.google.code</groupId>
            <artifactId>jarjar</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-asm</artifactId>
   <version>3.1.2.release</version>
</dependency>

Download

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



Download spring-asm-3.1.2.release.jar file




PreviousNext

Related