xmvn/0001-Copy-core-dependencies-to-lib-core-in-assembly.patch

39 lines
1.0 KiB
Diff
Raw Normal View History

From a2f918fe86c91e1a76d198e824118d5ba474808c Mon Sep 17 00:00:00 2001
2015-10-28 21:31:25 +00:00
From: Mikolaj Izdebski <mizdebsk@redhat.com>
Date: Wed, 28 Oct 2015 22:26:44 +0100
Subject: [PATCH 1/4] Copy core dependencies to lib/core in assembly
2015-10-28 21:31:25 +00:00
---
xmvn-core/pom.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/xmvn-core/pom.xml b/xmvn-core/pom.xml
index e792f6a..b0ef6b5 100644
--- a/xmvn-core/pom.xml
+++ b/xmvn-core/pom.xml
@@ -128,6 +128,21 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <configuration>
+ <includeScope>runtime</includeScope>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>
--
2.9.3
2015-10-28 21:31:25 +00:00