asm-1.0.2.pom 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <!-- this POM is released under an Apache 2.0 license -->
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>asm</artifactId>
  6. <packaging>bundle</packaging>
  7. <version>1.0.2</version>
  8. <parent>
  9. <groupId>net.minidev</groupId>
  10. <artifactId>parent</artifactId>
  11. <version>2.1.0</version>
  12. <relativePath>../parent/pom.xml</relativePath>
  13. </parent>
  14. <name>ASM helper Minidev</name>
  15. <description>
  16. ASM Optimisation Package
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>asm</groupId>
  26. <artifactId>asm</artifactId>
  27. <version>3.3.1</version>
  28. </dependency>
  29. <!-- <dependency> -->
  30. <!-- <groupId>asm</groupId> -->
  31. <!-- <artifactId>asm-util</artifactId> -->
  32. <!-- <version>3.3.1</version> -->
  33. <!-- </dependency> -->
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.felix</groupId>
  39. <artifactId>maven-bundle-plugin</artifactId>
  40. <version>2.3.7</version>
  41. <extensions>true</extensions>
  42. <configuration>
  43. <instructions>
  44. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  45. <Bundle-Name>${project.artifactId}</Bundle-Name>
  46. <Bundle-Version>${project.version}</Bundle-Version>
  47. <Export-Package>net.minidev.asm,net.minidev.asm.ex</Export-Package>
  48. <!-- Private-Package></Private-Package -->
  49. <Embed-Dependency>asm;groupId=asm;inline=true</Embed-Dependency>
  50. </instructions>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>