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 20:48:40 UTC

incubator-tamaya git commit: TAMAYA-80 Added JSON module to the distribution.

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


TAMAYA-80 Added JSON module to the distribution.


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

Branch: refs/heads/master
Commit: 054d79e4b2e7bbe6566a1a64bb7b5491d8b5e245
Parents: dc74fb4
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Tue Jun 23 20:48:20 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Tue Jun 23 20:48:20 2015 +0200

----------------------------------------------------------------------
 distribution/pom.xml                            | 20 ++++++++++++++++++++
 distribution/src/main/assembly/distribution.xml | 10 +++++++++-
 2 files changed, 29 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/054d79e4/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 39a166b..579d7ed 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -140,6 +140,26 @@ under the License.
 
         <!-- JSON module -->
 
+        <dependency>
+            <groupId>org.apache.tamaya.ext</groupId>
+            <artifactId>tamaya-json</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tamaya.ext</groupId>
+            <artifactId>tamaya-json</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tamaya.ext</groupId>
+            <artifactId>tamaya-json</artifactId>
+            <version>${project.version}</version>
+            <classifier>javadoc</classifier>
+        </dependency>
+
+        <!-- JSON module -->
+
     </dependencies>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/054d79e4/distribution/src/main/assembly/distribution.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/assembly/distribution.xml b/distribution/src/main/assembly/distribution.xml
index 49aeb1e..b3a8550 100644
--- a/distribution/src/main/assembly/distribution.xml
+++ b/distribution/src/main/assembly/distribution.xml
@@ -81,7 +81,7 @@ under the License.
             </includes>
         </dependencySet>
 
-        <!-- Tamaya module -->
+        <!-- Tamaya modules -->
 
         <dependencySet>
             <outputDirectory>modules/builder</outputDirectory>
@@ -91,6 +91,14 @@ under the License.
             <useTransitiveDependencies>true</useTransitiveDependencies>
         </dependencySet>
 
+        <dependencySet>
+            <outputDirectory>modules/json</outputDirectory>
+            <includes>
+                <include>org.apache.tamaya.ext:tamaya-json</include>
+                <include>com.fasterxml.jackson.core:*</include>
+            </includes>
+        </dependencySet>
+
     </dependencySets>
 
     <fileSets>