accessors-smart-1.1.pom 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>accessors-smart</artifactId>
  6. <packaging>bundle</packaging>
  7. <version>1.1</version>
  8. <parent>
  9. <groupId>net.minidev</groupId>
  10. <artifactId>minidev-parent</artifactId>
  11. <version>2.2</version>
  12. <relativePath>../parent/pom.xml</relativePath>
  13. </parent>
  14. <name>ASM based accessors helper used by json-smart</name>
  15. <description>Java reflect give poor performance on getter setter an constructor calls,
  16. accessors-smart use ASM to speed up those calls.
  17. </description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.ow2.asm</groupId>
  26. <artifactId>asm</artifactId>
  27. <version>5.0.3</version>
  28. </dependency>
  29. <!--
  30. <dependency>
  31. <groupId>asm</groupId>
  32. <artifactId>asm</artifactId>
  33. <version>3.3.1</version>
  34. </dependency>
  35. -->
  36. <!-- <dependency> -->
  37. <!-- <groupId>asm</groupId> -->
  38. <!-- <artifactId>asm-util</artifactId> -->
  39. <!-- <version>3.3.1</version> -->
  40. <!-- </dependency> -->
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.felix</groupId>
  46. <artifactId>maven-bundle-plugin</artifactId>
  47. <version>2.3.7</version>
  48. <extensions>true</extensions>
  49. <configuration>
  50. <instructions>
  51. <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
  52. <Bundle-Name>${project.artifactId}</Bundle-Name>
  53. <Bundle-Version>${project.version}</Bundle-Version>
  54. <Export-Package>
  55. net.minidev.asm,
  56. net.minidev.asm.ex
  57. </Export-Package>
  58. <!-- Private-Package></Private-Package -->
  59. <Embed-Dependency>asm;groupId=org.ow2.asm;inline=true</Embed-Dependency>
  60. </instructions>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>