pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>net.ranides</groupId>
  6. <artifactId>assira.project</artifactId>
  7. <version>2.5.0</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <groupId>net.ranides</groupId>
  11. <artifactId>assira.asm</artifactId>
  12. <version>7.2</version>
  13. <packaging>jar</packaging>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-shade-plugin</artifactId>
  19. <version>3.2.1</version>
  20. <executions>
  21. <execution>
  22. <phase>package</phase>
  23. <goals>
  24. <goal>shade</goal>
  25. </goals>
  26. <configuration>
  27. <shadedArtifactAttached>false</shadedArtifactAttached>
  28. <createDependencyReducedPom>true</createDependencyReducedPom>
  29. <minimizeJar>false</minimizeJar>
  30. <createSourcesJar>true</createSourcesJar>
  31. <artifactSet>
  32. <includes>
  33. <include>org.ow2.asm:*</include>
  34. </includes>
  35. </artifactSet>
  36. <filters>
  37. <filter>
  38. <artifact>org.ow2.asm:*</artifact>
  39. <excludes>
  40. <exclude>META-INF/**</exclude>
  41. </excludes>
  42. </filter>
  43. </filters>
  44. <relocations>
  45. <relocation>
  46. <pattern>org.objectweb.asm</pattern>
  47. <shadedPattern>net.ranides.asm</shadedPattern>
  48. </relocation>
  49. </relocations>
  50. </configuration>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.ow2.asm</groupId>
  59. <artifactId>asm</artifactId>
  60. <version>7.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.ow2.asm</groupId>
  64. <artifactId>asm-commons</artifactId>
  65. <version>7.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.ow2.asm</groupId>
  69. <artifactId>asm-util</artifactId>
  70. <version>7.2</version>
  71. </dependency>
  72. </dependencies>
  73. </project>