diff options
-rw-r--r-- | id/server/idserverlib/pom.xml | 6 | ||||
-rw-r--r-- | pom.xml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index f0c845928..b224717c2 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -435,6 +435,12 @@ <artifactId>jackson-databind</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ </dependency>
+
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
@@ -671,6 +671,12 @@ <artifactId>jackson-databind</artifactId>
<version>${jackson-version}</version>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${jackson-version}</version>
+ </dependency>
+ </dependencies>
</dependencyManagement>
<dependencies>
|