byte-buddy-1.7.11.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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>byte-buddy-parent</artifactId>
  5. <groupId>net.bytebuddy</groupId>
  6. <version>1.7.11</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>byte-buddy</artifactId>
  10. <name>Byte Buddy (without dependencies)</name>
  11. <description>Byte Buddy is a Java library for creating Java classes at run time.
  12. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-shade-plugin</artifactId>
  17. <version>${version.plugin.shade}</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. <createSourcesJar>true</createSourcesJar>
  28. <shadeSourcesContent>true</shadeSourcesContent>
  29. <relocations>
  30. <relocation>
  31. <pattern>${shade.source}</pattern>
  32. <shadedPattern>${shade.target}</shadedPattern>
  33. </relocation>
  34. </relocations>
  35. <filters>
  36. <filter>
  37. <artifact>*:*</artifact>
  38. <excludes>
  39. <exclude>module-info.class</exclude>
  40. </excludes>
  41. </filter>
  42. </filters>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.pitest</groupId>
  49. <artifactId>pitest-maven</artifactId>
  50. <version>${version.plugin.pitest}</version>
  51. <configuration>
  52. <skip>true</skip>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <profiles>
  58. <profile>
  59. <id>extras</id>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <artifactId>maven-jar-plugin</artifactId>
  64. <version>3.0.2</version>
  65. <executions>
  66. <execution>
  67. <id>default-jar</id>
  68. <phase>package</phase>
  69. <goals>
  70. <goal>jar</goal>
  71. </goals>
  72. <configuration>
  73. <archive>
  74. <manifestFile>/home/rafael/workspace/oss/byte-buddy/target/checkout/byte-buddy/target/classes/META-INF/MANIFEST.MF</manifestFile>
  75. </archive>
  76. </configuration>
  77. </execution>
  78. </executions>
  79. <configuration>
  80. <archive>
  81. <manifestFile>/home/rafael/workspace/oss/byte-buddy/target/checkout/byte-buddy/target/classes/META-INF/MANIFEST.MF</manifestFile>
  82. </archive>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.felix</groupId>
  87. <artifactId>maven-bundle-plugin</artifactId>
  88. <version>3.3.0</version>
  89. <executions>
  90. <execution>
  91. <phase>process-classes</phase>
  92. <goals>
  93. <goal>manifest</goal>
  94. </goals>
  95. <configuration>
  96. <instructions>
  97. <Export-Package>net.bytebuddy,
  98. net.bytebuddy.agent.builder,
  99. net.bytebuddy.asm,
  100. net.bytebuddy.build,
  101. net.bytebuddy.description,
  102. net.bytebuddy.description.annotation,
  103. net.bytebuddy.description.enumeration,
  104. net.bytebuddy.description.field,
  105. net.bytebuddy.description.method,
  106. net.bytebuddy.description.modifier,
  107. net.bytebuddy.description.type,
  108. net.bytebuddy.dynamic,
  109. net.bytebuddy.dynamic.loading,
  110. net.bytebuddy.dynamic.scaffold,
  111. net.bytebuddy.dynamic.scaffold.inline,
  112. net.bytebuddy.dynamic.scaffold.subclass,
  113. net.bytebuddy.implementation,
  114. net.bytebuddy.implementation.attribute,
  115. net.bytebuddy.implementation.auxiliary,
  116. net.bytebuddy.implementation.bind,
  117. net.bytebuddy.implementation.bind.annotation,
  118. net.bytebuddy.implementation.bytecode,
  119. net.bytebuddy.implementation.bytecode.assign,
  120. net.bytebuddy.implementation.bytecode.assign.primitive,
  121. net.bytebuddy.implementation.bytecode.assign.reference,
  122. net.bytebuddy.implementation.bytecode.collection,
  123. net.bytebuddy.implementation.bytecode.constant,
  124. net.bytebuddy.implementation.bytecode.member,
  125. net.bytebuddy.matcher,
  126. net.bytebuddy.pool,
  127. net.bytebuddy.utility,
  128. net.bytebuddy.utility.privilege,
  129. net.bytebuddy.utility.visitor,
  130. net.bytebuddy.jar.asm</Export-Package>
  131. <Automatic-Module-Name>net.bytebuddy</Automatic-Module-Name>
  132. </instructions>
  133. </configuration>
  134. </execution>
  135. </executions>
  136. <configuration>
  137. <instructions>
  138. <Export-Package>net.bytebuddy,
  139. net.bytebuddy.agent.builder,
  140. net.bytebuddy.asm,
  141. net.bytebuddy.build,
  142. net.bytebuddy.description,
  143. net.bytebuddy.description.annotation,
  144. net.bytebuddy.description.enumeration,
  145. net.bytebuddy.description.field,
  146. net.bytebuddy.description.method,
  147. net.bytebuddy.description.modifier,
  148. net.bytebuddy.description.type,
  149. net.bytebuddy.dynamic,
  150. net.bytebuddy.dynamic.loading,
  151. net.bytebuddy.dynamic.scaffold,
  152. net.bytebuddy.dynamic.scaffold.inline,
  153. net.bytebuddy.dynamic.scaffold.subclass,
  154. net.bytebuddy.implementation,
  155. net.bytebuddy.implementation.attribute,
  156. net.bytebuddy.implementation.auxiliary,
  157. net.bytebuddy.implementation.bind,
  158. net.bytebuddy.implementation.bind.annotation,
  159. net.bytebuddy.implementation.bytecode,
  160. net.bytebuddy.implementation.bytecode.assign,
  161. net.bytebuddy.implementation.bytecode.assign.primitive,
  162. net.bytebuddy.implementation.bytecode.assign.reference,
  163. net.bytebuddy.implementation.bytecode.collection,
  164. net.bytebuddy.implementation.bytecode.constant,
  165. net.bytebuddy.implementation.bytecode.member,
  166. net.bytebuddy.matcher,
  167. net.bytebuddy.pool,
  168. net.bytebuddy.utility,
  169. net.bytebuddy.utility.privilege,
  170. net.bytebuddy.utility.visitor,
  171. net.bytebuddy.jar.asm</Export-Package>
  172. <Automatic-Module-Name>net.bytebuddy</Automatic-Module-Name>
  173. </instructions>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <artifactId>maven-javadoc-plugin</artifactId>
  178. <version>2.10.4</version>
  179. <executions>
  180. <execution>
  181. <id>attach-javadoc</id>
  182. <goals>
  183. <goal>jar</goal>
  184. </goals>
  185. <configuration>
  186. <includeDependencySources>true</includeDependencySources>
  187. <dependencySourceIncludes>
  188. <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
  189. </dependencySourceIncludes>
  190. <detectJavaApiLink>true</detectJavaApiLink>
  191. <links>
  192. <link>http://asm.ow2.org/asm50/javadoc/user/</link>
  193. </links>
  194. </configuration>
  195. </execution>
  196. <execution>
  197. <id>aggregate-javadoc</id>
  198. <phase>package</phase>
  199. <goals>
  200. <goal>aggregate</goal>
  201. </goals>
  202. <configuration>
  203. <doctitle>Byte Buddy (full API), version 1.7.11</doctitle>
  204. <failOnError>false</failOnError>
  205. <includeDependencySources>true</includeDependencySources>
  206. <dependencySourceIncludes>
  207. <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
  208. </dependencySourceIncludes>
  209. <detectJavaApiLink>true</detectJavaApiLink>
  210. <links>
  211. <link>http://asm.ow2.org/asm50/javadoc/user/</link>
  212. </links>
  213. </configuration>
  214. </execution>
  215. </executions>
  216. <configuration>
  217. <includeDependencySources>true</includeDependencySources>
  218. <dependencySourceIncludes>
  219. <dependencySourceInclude>net.bytebuddy:byte-buddy-dep</dependencySourceInclude>
  220. </dependencySourceIncludes>
  221. <detectJavaApiLink>true</detectJavaApiLink>
  222. <links>
  223. <link>http://asm.ow2.org/asm50/javadoc/user/</link>
  224. </links>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. </build>
  229. </profile>
  230. </profiles>
  231. <dependencies>
  232. <dependency>
  233. <groupId>com.google.code.findbugs</groupId>
  234. <artifactId>findbugs-annotations</artifactId>
  235. <version>3.0.1</version>
  236. <scope>provided</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.projectlombok</groupId>
  240. <artifactId>lombok</artifactId>
  241. <version>1.16.20</version>
  242. <scope>provided</scope>
  243. </dependency>
  244. </dependencies>
  245. <properties>
  246. <shade.source>org.objectweb.asm</shade.source>
  247. <shade.target>net.bytebuddy.jar.asm</shade.target>
  248. </properties>
  249. </project>