jackson-annotations-2.14.0.pom 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. <!-- This module was also published with a richer model, Gradle metadata, -->
  4. <!-- which should be used instead. Do not delete the following line which -->
  5. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  6. <!-- that they should prefer consuming it instead. -->
  7. <!-- do_not_remove: published-with-gradle-metadata -->
  8. <modelVersion>4.0.0</modelVersion>
  9. <parent>
  10. <groupId>com.fasterxml.jackson</groupId>
  11. <!-- this is one of few Jackson modules that depends on parent and NOT jackson-bom -->
  12. <artifactId>jackson-parent</artifactId>
  13. <version>2.14</version>
  14. </parent>
  15. <groupId>com.fasterxml.jackson.core</groupId>
  16. <artifactId>jackson-annotations</artifactId>
  17. <name>Jackson-annotations</name>
  18. <version>2.14.0</version>
  19. <packaging>bundle</packaging>
  20. <description>Core annotations used for value types, used by Jackson data binding package.
  21. </description>
  22. <inceptionYear>2008</inceptionYear>
  23. <licenses>
  24. <license>
  25. <name>The Apache Software License, Version 2.0</name>
  26. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  27. <distribution>repo</distribution>
  28. </license>
  29. </licenses>
  30. <url>https://github.com/FasterXML/jackson</url>
  31. <scm>
  32. <connection>scm:git:git@github.com:FasterXML/jackson-annotations.git</connection>
  33. <developerConnection>scm:git:git@github.com:FasterXML/jackson-annotations.git</developerConnection>
  34. <url>https://github.com/FasterXML/jackson-annotations</url>
  35. <tag>jackson-annotations-2.14.0</tag>
  36. </scm>
  37. <properties>
  38. <!-- 04-Mar-2019, tatu: Retain Java6/JDK1.6 compatibility for annotations for Jackson 2.x,
  39. but use Moditect to get JDK9+ module info support; need newer bundle plugin as well
  40. -->
  41. <javac.src.version>1.6</javac.src.version>
  42. <javac.target.version>1.6</javac.target.version>
  43. <maven.compiler.source>1.6</maven.compiler.source>
  44. <maven.compiler.target>1.6</maven.compiler.target>
  45. <osgi.export>com.fasterxml.jackson.annotation.*;version=${project.version}</osgi.export>
  46. <!-- for Reproducible Builds -->
  47. <project.build.outputTimestamp>2022-11-05T20:15:48Z</project.build.outputTimestamp>
  48. </properties>
  49. <dependencies>
  50. <dependency>
  51. <groupId>junit</groupId>
  52. <artifactId>junit</artifactId>
  53. <version>${version.junit}</version>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <!-- Alas, need to include snapshot reference since otherwise can not find
  58. snapshot of parent... -->
  59. <repositories>
  60. <repository>
  61. <id>sonatype-nexus-snapshots</id>
  62. <name>Sonatype Nexus Snapshots</name>
  63. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  64. <releases><enabled>false</enabled></releases>
  65. <snapshots><enabled>true</enabled></snapshots>
  66. </repository>
  67. </repositories>
  68. <build>
  69. <plugins>
  70. <!-- First: no replacer plugin (no Packaversion.java.in) for this package -->
  71. <plugin>
  72. <!-- 08-Mar-2019, tatu: Would get these settings from `jackson-bom` except we
  73. do not extend it so...
  74. -->
  75. <groupId>org.moditect</groupId>
  76. <artifactId>moditect-maven-plugin</artifactId>
  77. <executions>
  78. <execution>
  79. <id>add-module-infos</id>
  80. <phase>package</phase>
  81. <goals>
  82. <goal>add-module-info</goal>
  83. </goals>
  84. <configuration>
  85. <overwriteExistingFiles>true</overwriteExistingFiles>
  86. <module>
  87. <moduleInfoFile>src/moditect/module-info.java</moduleInfoFile>
  88. </module>
  89. </configuration>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <!-- 08-Nov-2019, tatu: Copied from
  94. https://github.com/stephenc/git-timestamp-maven-plugin/blob/master/pom.xml#L327-L337
  95. -->
  96. <plugin>
  97. <groupId>org.sonatype.plugins</groupId>
  98. <artifactId>nexus-staging-maven-plugin</artifactId>
  99. <version>1.6.8</version>
  100. <extensions>true</extensions>
  101. <configuration>
  102. <serverId>sonatype-nexus-staging</serverId>
  103. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  104. <stagingProfileId>b34f19b9cc6224</stagingProfileId>
  105. </configuration>
  106. </plugin>
  107. <!-- 11-Jun-2020, tatu: [annotations#173] add gradle module metadata
  108. -->
  109. <plugin>
  110. <groupId>de.jjohannes</groupId>
  111. <artifactId>gradle-module-metadata-maven-plugin</artifactId>
  112. <version>0.2.0</version>
  113. <executions>
  114. <execution>
  115. <goals>
  116. <goal>gmm</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. <configuration>
  121. <platformDependencies>
  122. <dependency>
  123. <groupId>com.fasterxml.jackson</groupId>
  124. <artifactId>jackson-bom</artifactId>
  125. <version>${project.version}</version>
  126. </dependency>
  127. </platformDependencies>
  128. </configuration>
  129. </plugin>
  130. <!-- 20-Oct-2020, tatu: [annotations#178] copy full LICENSE from main dir
  131. -->
  132. <plugin>
  133. <groupId>org.codehaus.mojo</groupId>
  134. <artifactId>build-helper-maven-plugin</artifactId>
  135. <executions>
  136. <execution>
  137. <id>add-resource</id>
  138. <phase>generate-resources</phase>
  139. <goals>
  140. <goal>add-resource</goal>
  141. </goals>
  142. <configuration>
  143. <resources>
  144. <resource>
  145. <directory>${project.basedir}</directory>
  146. <targetPath>META-INF</targetPath>
  147. <includes>
  148. <include>LICENSE</include>
  149. </includes>
  150. </resource>
  151. </resources>
  152. </configuration>
  153. </execution>
  154. </executions>
  155. </plugin>
  156. </plugins>
  157. </build>
  158. </project>