jackson-core-2.13.3.pom 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <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">
  2. <!-- This module was also published with a richer model, Gradle metadata, -->
  3. <!-- which should be used instead. Do not delete the following line which -->
  4. <!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
  5. <!-- that they should prefer consuming it instead. -->
  6. <!-- do_not_remove: published-with-gradle-metadata -->
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>com.fasterxml.jackson</groupId>
  10. <artifactId>jackson-base</artifactId>
  11. <version>2.13.3</version>
  12. </parent>
  13. <groupId>com.fasterxml.jackson.core</groupId>
  14. <artifactId>jackson-core</artifactId>
  15. <name>Jackson-core</name>
  16. <version>2.13.3</version>
  17. <packaging>bundle</packaging>
  18. <description>Core Jackson processing abstractions (aka Streaming API), implementation for JSON</description>
  19. <licenses>
  20. <license>
  21. <name>The Apache Software License, Version 2.0</name>
  22. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  23. <distribution>repo</distribution>
  24. </license>
  25. </licenses>
  26. <inceptionYear>2008</inceptionYear>
  27. <url>https://github.com/FasterXML/jackson-core</url>
  28. <scm>
  29. <connection>scm:git:git@github.com:FasterXML/jackson-core.git</connection>
  30. <developerConnection>scm:git:git@github.com:FasterXML/jackson-core.git</developerConnection>
  31. <url>http://github.com/FasterXML/jackson-core</url>
  32. <tag>jackson-core-2.13.3</tag>
  33. </scm>
  34. <properties>
  35. <!-- 04-Mar-2019, tatu: Retain Java6/JDK1.6 compatibility for annotations for Jackson 2.x,
  36. but use Moditect to get JDK9+ module info support; need newer bundle plugin as well
  37. -->
  38. <javac.src.version>1.6</javac.src.version>
  39. <javac.target.version>1.6</javac.target.version>
  40. <maven.compiler.source>1.6</maven.compiler.source>
  41. <maven.compiler.target>1.6</maven.compiler.target>
  42. <osgi.export>com.fasterxml.jackson.core;version=${project.version},
  43. com.fasterxml.jackson.core.*;version=${project.version}
  44. </osgi.export>
  45. <!-- Generate PackageVersion.java into this directory. -->
  46. <packageVersion.dir>com/fasterxml/jackson/core/json</packageVersion.dir>
  47. <packageVersion.package>${project.groupId}.json</packageVersion.package>
  48. </properties>
  49. <!-- Alas, need to include snapshot reference since otherwise can not find
  50. snapshot of parent... -->
  51. <repositories>
  52. <repository>
  53. <id>sonatype-nexus-snapshots</id>
  54. <name>Sonatype Nexus Snapshots</name>
  55. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  56. <releases><enabled>false</enabled></releases>
  57. <snapshots><enabled>true</enabled></snapshots>
  58. </repository>
  59. </repositories>
  60. <build>
  61. <plugins>
  62. <!-- 26-Aug-2019, tatu: JaCoCo for code coverage -->
  63. <plugin>
  64. <groupId>org.jacoco</groupId>
  65. <artifactId>jacoco-maven-plugin</artifactId>
  66. <executions>
  67. <execution>
  68. <goals>
  69. <goal>prepare-agent</goal>
  70. </goals>
  71. </execution>
  72. <execution>
  73. <id>report</id>
  74. <phase>test</phase>
  75. <goals>
  76. <goal>report</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <!-- Important: enable enforcer plug-in: -->
  82. <plugin>
  83. <artifactId>maven-enforcer-plugin</artifactId>
  84. <executions> <!-- or? combine.children="merge"> -->
  85. <execution>
  86. <id>enforce-properties</id>
  87. <phase>validate</phase>
  88. <goals><goal>enforce</goal></goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-site-plugin</artifactId>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-surefire-plugin</artifactId>
  99. <version>${version.plugin.surefire}</version>
  100. <configuration>
  101. <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile>
  102. <excludes>
  103. <exclude>**/failing/**/*.java</exclude>
  104. </excludes>
  105. <!-- 13-Apr-2018, tatu: for debugging [core#400]
  106. <systemPropertyVariables>
  107. <com.fasterxml.jackson.core.util.BufferRecyclers.trackReusableBuffers>true</com.fasterxml.jackson.core.util.BufferRecyclers.trackReusableBuffers>
  108. </systemPropertyVariables>
  109. -->
  110. </configuration>
  111. </plugin>
  112. <!-- settings are fine, but needed to trigger execution! -->
  113. <plugin>
  114. <groupId>com.google.code.maven-replacer-plugin</groupId>
  115. <artifactId>replacer</artifactId>
  116. </plugin>
  117. <!-- 04-Mar-2019, tatu: Add rudimentary JDK9+ module info. To build with JDK 8
  118. will have to use `moduleInfoFile` as anything else requires JDK 9+
  119. -->
  120. <plugin>
  121. <groupId>org.moditect</groupId>
  122. <artifactId>moditect-maven-plugin</artifactId>
  123. </plugin>
  124. <!-- 03-Nov-2020, tatu: Add LICENSE from main level -->
  125. <plugin>
  126. <groupId>org.codehaus.mojo</groupId>
  127. <artifactId>build-helper-maven-plugin</artifactId>
  128. </plugin>
  129. <plugin>
  130. <groupId>de.jjohannes</groupId>
  131. <artifactId>gradle-module-metadata-maven-plugin</artifactId>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>