You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/01/16 15:40:35 UTC

[tomee-tck] branch master updated: Kludge to get things to worked after flipping to system scoped deps. The issue is something isn't picking these up and copying to ${openejb.home}/lib.

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

jgallimore pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
     new 37d08e2  Kludge to get things to worked after flipping to system scoped deps. The issue is something isn't picking these up and copying to ${openejb.home}/lib.
     new 567a516  Merge remote-tracking branch 'apache/master'
37d08e2 is described below

commit 37d08e25128bd2154572c308850edd905462e4a3
Author: Jonathan Gallimore <jo...@jrg.me.uk>
AuthorDate: Wed Jan 16 15:38:43 2019 +0000

    Kludge to get things to worked after flipping to system scoped deps. The issue is something isn't picking these up and copying to ${openejb.home}/lib.
---
 pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/pom.xml b/pom.xml
index ee7762d..07044ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -788,6 +788,20 @@
               <goal>copy-dependencies</goal>
             </goals>
             <configuration>
+              <outputDirectory>${project.build.directory}/lib</outputDirectory>
+              <overWriteReleases>false</overWriteReleases>
+              <overWriteSnapshots>true</overWriteSnapshots>
+              <excludeTransitive>true</excludeTransitive>
+              <includeArtifactIds>openejb-lite,activemq-client,activemq-client,tsharness,cts,whitebox,dbprocedures,geronimo-mail,openejb-derbynet,derby,derbynet,derbyclient,webdeployer</includeArtifactIds>
+            </configuration>
+          </execution>
+          <execution>
+            <id>copy-dependencies-tomee-lib</id>
+            <phase>pre-integration-test</phase>
+            <goals>
+              <goal>copy-dependencies</goal>
+            </goals>
+            <configuration>
               <outputDirectory>${openejb.home}/lib</outputDirectory>
               <overWriteReleases>false</overWriteReleases>
               <overWriteSnapshots>true</overWriteSnapshots>