dependency-reduced-pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <artifactId>assira.project</artifactId>
  5. <groupId>net.ranides</groupId>
  6. <version>2.1.0</version>
  7. <relativePath>..</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>net.ranides</groupId>
  11. <artifactId>assira.asm</artifactId>
  12. <version>5.0.4</version>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-shade-plugin</artifactId>
  17. <version>1.4</version>
  18. <executions>
  19. <execution>
  20. <phase>package</phase>
  21. <goals>
  22. <goal>shade</goal>
  23. </goals>
  24. <configuration>
  25. <shadedArtifactAttached>false</shadedArtifactAttached>
  26. <createDependencyReducedPom>true</createDependencyReducedPom>
  27. <minimizeJar>false</minimizeJar>
  28. <createSourcesJar>true</createSourcesJar>
  29. <artifactSet>
  30. <includes>
  31. <include>org.ow2.asm:*</include>
  32. </includes>
  33. </artifactSet>
  34. <filters>
  35. <filter>
  36. <artifact>org.ow2.asm:*</artifact>
  37. <excludes>
  38. <exclude>META-INF/**</exclude>
  39. </excludes>
  40. </filter>
  41. </filters>
  42. <relocations>
  43. <relocation>
  44. <pattern>org.objectweb.asm</pattern>
  45. <shadedPattern>net.ranides.asm</shadedPattern>
  46. </relocation>
  47. </relocations>
  48. </configuration>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <dependencies>
  55. <dependency>
  56. <groupId>cglib</groupId>
  57. <artifactId>cglib</artifactId>
  58. <version>3.2.4</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. </dependencies>
  62. </project>