asm-1.0-RC1.pom 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>jar</packaging>
  7. <version>1.0-RC1</version>
  8. <parent>
  9. <groupId>net.minidev</groupId>
  10. <artifactId>parent</artifactId>
  11. <version>2.0-RC1</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. <!-- <groupId>asm</groupId> -->
  35. <!-- <artifactId>asm-analysis</artifactId> -->
  36. <!-- <version>3.3.1</version> -->
  37. <!-- </dependency> -->
  38. <!-- <dependency> -->
  39. <!-- <groupId>asm</groupId> -->
  40. <!-- <artifactId>asm-commons</artifactId> -->
  41. <!-- <version>3.3.1</version> -->
  42. <!-- </dependency> -->
  43. <!-- <dependency> -->
  44. <!-- <groupId>asm</groupId> -->
  45. <!-- <artifactId>asm-tree</artifactId> -->
  46. <!-- <version>3.3.1</version> -->
  47. <!-- </dependency> -->
  48. </dependencies>
  49. </project>