aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatu Saloranta <tatu.saloranta@iki.fi>2020-04-26 22:58:02 -0700
committerTatu Saloranta <tatu.saloranta@iki.fi>2020-04-26 22:58:02 -0700
commit2701a5b376a8e74799a0236216108ca82ba8347f (patch)
tree2428581924ce27a48f8ada39bb2781eeb5c3f5ce
parent50d9daa0a749fd76076cbba55f624525752e41f8 (diff)
downloadjackson-annotations-2701a5b376a8e74799a0236216108ca82ba8347f.tar.gz
... and ref to snapshot repo was missing, add
-rw-r--r--pom.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index f912a61..9f7703f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,13 +5,13 @@
<groupId>com.fasterxml.jackson</groupId>
<!-- this is one of few Jackson modules that depends on parent and NOT jackson-bom -->
<artifactId>jackson-parent</artifactId>
- <version>2.11</version>
+ <version>2.12-SNAPSHOT</version>
</parent>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<name>Jackson-annotations</name>
- <version>2.11.1-SNAPSHOT</version>
+ <version>2.12.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<description>Core annotations used for value types, used by Jackson data binding package.
</description>
@@ -53,6 +53,18 @@
</dependency>
</dependencies>
+ <!-- Alas, need to include snapshot reference since otherwise can not find
+ snapshot of parent... -->
+ <repositories>
+ <repository>
+ <id>sonatype-nexus-snapshots</id>
+ <name>Sonatype Nexus Snapshots</name>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ <releases><enabled>false</enabled></releases>
+ <snapshots><enabled>true</enabled></snapshots>
+ </repository>
+ </repositories>
+
<build>
<plugins>
<plugin>