You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2015/06/23 21:20:53 UTC

incubator-tamaya git commit: TAMAYA-80 Use same version of Jackson for all Jackson modules used by the JSON module.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 054d79e4b -> 2db93a246


TAMAYA-80 Use same version of Jackson for all Jackson modules used by the JSON module.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/2db93a24
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/2db93a24
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/2db93a24

Branch: refs/heads/master
Commit: 2db93a24680b8db2b877f0ed5b86a707cb4de143
Parents: 054d79e
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Tue Jun 23 21:19:49 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Tue Jun 23 21:19:49 2015 +0200

----------------------------------------------------------------------
 modules/json/pom.xml |  8 ++++++++
 pom.xml              | 10 ++++++++++
 2 files changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/2db93a24/modules/json/pom.xml
----------------------------------------------------------------------
diff --git a/modules/json/pom.xml b/modules/json/pom.xml
index 504d4f0..6d081c0 100644
--- a/modules/json/pom.xml
+++ b/modules/json/pom.xml
@@ -64,6 +64,14 @@ under the License.
             <artifactId>jackson-databind</artifactId>
         </dependency>
         <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-annotations</artifactId>
+        </dependency>
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/2db93a24/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c1213ca..bec9b97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -310,6 +310,16 @@ under the License.
                 <artifactId>jackson-databind</artifactId>
                 <version>${jackson.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-core</artifactId>
+                <version>${jackson.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>com.fasterxml.jackson.core</groupId>
+                <artifactId>jackson-annotations</artifactId>
+                <version>${jackson.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>