You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crail.apache.org by pe...@apache.org on 2018/10/25 12:37:41 UTC

incubator-crail git commit: [Build] fix source tarball name

Repository: incubator-crail
Updated Branches:
  refs/heads/master 9d80767ab -> 71af9a925


[Build] fix source tarball name

Change name of source tarball to adhere to
apche-crail-X.Y-incubating-src

https://jira.apache.org/jira/projects/CRAIL/issues/CRAIL-56

Signed-off-by: Jonas Pfefferle <pe...@apache.org>


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

Branch: refs/heads/master
Commit: 71af9a925a2317f14852256f9c01ead2f0bf3cb6
Parents: 9d80767
Author: Jonas Pfefferle <pe...@apache.org>
Authored: Thu Oct 25 14:15:12 2018 +0200
Committer: Jonas Pfefferle <pe...@apache.org>
Committed: Thu Oct 25 14:26:53 2018 +0200

----------------------------------------------------------------------
 pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crail/blob/71af9a92/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 17e19e2..0d6e199 100644
--- a/pom.xml
+++ b/pom.xml
@@ -149,6 +149,23 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>source-release-assembly</id>
+            <phase>package</phase>
+            <configuration combine.self="override">
+              <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+              <finalName>apache-crail-${project.version}</finalName>
+              <tarLongFileMode>posix</tarLongFileMode>
+              <descriptorRefs>
+                <descriptorRef>src</descriptorRef>
+              </descriptorRefs>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>