You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2020/12/02 12:19:54 UTC

[ignite] branch master updated: IGNITE-13640 Added runtime dependencies to opencensus module. Fixes #8406

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

sk0x50 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 897dca9  IGNITE-13640 Added runtime dependencies to opencensus module. Fixes #8406
897dca9 is described below

commit 897dca9aae523d992b1b550ced8eb7d571badd03
Author: Alexander Lapin <la...@gmail.com>
AuthorDate: Wed Dec 2 15:19:19 2020 +0300

    IGNITE-13640 Added runtime dependencies to opencensus module. Fixes #8406
    
    Signed-off-by: Slava Koptilin <sl...@gmail.com>
---
 modules/opencensus/pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/modules/opencensus/pom.xml b/modules/opencensus/pom.xml
index 648c2bc..9a3503a 100644
--- a/modules/opencensus/pom.xml
+++ b/modules/opencensus/pom.xml
@@ -116,4 +116,27 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>copy-libs</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>copy-dependencies</goal>
+                        </goals>
+                        <configuration>
+                            <excludeGroupIds>org.apache.ignite</excludeGroupIds>
+                            <outputDirectory>target/libs</outputDirectory>
+                            <includeScope>runtime</includeScope>
+                            <excludeTransitive>false</excludeTransitive>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>