|
@@ -0,0 +1,63 @@
|
|
|
|
|
+<?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>assira.project</artifactId>
|
|
|
|
|
+ <groupId>net.ranides</groupId>
|
|
|
|
|
+ <version>2.1.0</version>
|
|
|
|
|
+ <relativePath>..</relativePath>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <groupId>net.ranides</groupId>
|
|
|
|
|
+ <artifactId>assira.asm</artifactId>
|
|
|
|
|
+ <version>5.0.4</version>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
+ <version>1.4</version>
|
|
|
|
|
+ <executions>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <phase>package</phase>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>shade</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
|
+ <createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
|
|
+ <minimizeJar>false</minimizeJar>
|
|
|
|
|
+ <createSourcesJar>true</createSourcesJar>
|
|
|
|
|
+ <artifactSet>
|
|
|
|
|
+ <includes>
|
|
|
|
|
+ <include>org.ow2.asm:*</include>
|
|
|
|
|
+ </includes>
|
|
|
|
|
+ </artifactSet>
|
|
|
|
|
+ <filters>
|
|
|
|
|
+ <filter>
|
|
|
|
|
+ <artifact>org.ow2.asm:*</artifact>
|
|
|
|
|
+ <excludes>
|
|
|
|
|
+ <exclude>META-INF/**</exclude>
|
|
|
|
|
+ </excludes>
|
|
|
|
|
+ </filter>
|
|
|
|
|
+ </filters>
|
|
|
|
|
+ <relocations>
|
|
|
|
|
+ <relocation>
|
|
|
|
|
+ <pattern>org.objectweb.asm</pattern>
|
|
|
|
|
+ <shadedPattern>net.ranides.asm</shadedPattern>
|
|
|
|
|
+ </relocation>
|
|
|
|
|
+ </relocations>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ </executions>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cglib</groupId>
|
|
|
|
|
+ <artifactId>cglib</artifactId>
|
|
|
|
|
+ <version>3.2.4</version>
|
|
|
|
|
+ <scope>compile</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+</project>
|
|
|
|
|
+
|