You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2019/07/08 18:34:19 UTC

[incubator-iceberg] branch master updated: Publish resolved versions in POMs (#270)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 566902b  Publish resolved versions in POMs (#270)
566902b is described below

commit 566902b9985bfaffffd1a81f2fe273f7549182af
Author: Dan Sănduleac <da...@users.noreply.github.com>
AuthorDate: Mon Jul 8 19:34:15 2019 +0100

    Publish resolved versions in POMs (#270)
---
 build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/build.gradle b/build.gradle
index 2619bfc..ade8c9a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -91,6 +91,11 @@ subprojects {
     publications {
       nebula(MavenPublication) {
         from components.java
+        versionMapping {
+          allVariants {
+            fromResolutionResult()
+          }
+        }
       }
     }
   }