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/14 23:20:32 UTC

incubator-tamaya git commit: TAMAYA-80 Include also the source jars.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master c0676d8bb -> a36e43457


TAMAYA-80 Include also the source jars.


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

Branch: refs/heads/master
Commit: a36e4345790700c994999eb1f69171571d7a5aa7
Parents: c0676d8
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sun Jun 14 23:20:09 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sun Jun 14 23:20:09 2015 +0200

----------------------------------------------------------------------
 distribution/pom.xml                            | 26 ++++++++++++++++++++
 distribution/src/main/assembly/distribution.xml | 26 ++++++++++++++++----
 2 files changed, 47 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a36e4345/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 207b270..0330989 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -42,8 +42,21 @@ under the License.
         </dependency>
         <dependency>
             <groupId>org.apache.tamaya</groupId>
+            <artifactId>tamaya-java7-api</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tamaya</groupId>
+            <artifactId>tamaya-java7-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tamaya</groupId>
             <artifactId>tamaya-java7-core</artifactId>
             <version>${project.version}</version>
+            <classifier>sources</classifier>
         </dependency>
 
         <!-- Java 8 related artifacts -->
@@ -54,8 +67,21 @@ under the License.
         </dependency>
         <dependency>
             <groupId>org.apache.tamaya</groupId>
+            <artifactId>tamaya-api</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tamaya</groupId>
+            <artifactId>tamaya-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tamaya</groupId>
             <artifactId>tamaya-core</artifactId>
             <version>${project.version}</version>
+            <classifier>sources</classifier>
         </dependency>
 
     </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a36e4345/distribution/src/main/assembly/distribution.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/assembly/distribution.xml b/distribution/src/main/assembly/distribution.xml
index 9e8e3b7..698a374 100644
--- a/distribution/src/main/assembly/distribution.xml
+++ b/distribution/src/main/assembly/distribution.xml
@@ -34,20 +34,36 @@ under the License.
                 <include>org.apache.tamaya:tamaya-java7-api</include>
                 <include>org.apache.tamaya:tamaya-java7-core</include>
             </includes>
+            <excludes>
+                <exclude>*:*:*:sources</exclude>
+            </excludes>
         </dependencySet>
         <dependencySet>
+            <outputDirectory>java7/sources</outputDirectory>
+            <includes>
+                <include>org.apache.tamaya:tamaya-java7-api:*:sources</include>
+                <include>org.apache.tamaya:tamaya-java7-core:*:sources</include>
+            </includes>
+        </dependencySet>
+
+        <dependencySet>
             <outputDirectory>java8/lib</outputDirectory>
             <includes>
                 <include>org.apache.tamaya:tamaya-api</include>
                 <include>org.apache.tamaya:tamaya-core</include>
             </includes>
+            <excludes>
+                <exclude>*:*:sources</exclude>
+            </excludes>
+        </dependencySet>
+        <dependencySet>
+            <outputDirectory>java8/sources</outputDirectory>
+            <includes>
+                <include>org.apache.tamaya:tamaya-api:*:sources</include>
+                <include>org.apache.tamaya:tamaya-core:*:sources</include>
+            </includes>
         </dependencySet>
     </dependencySets>
 
-    <!--<moduleSets>-->
-        <!--<moduleSet>-->
-            <!--<-->
-        <!--</moduleSet>-->
-    <!--</moduleSets>-->
 
 </assembly>
\ No newline at end of file