You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sirona.apache.org by rm...@apache.org on 2015/11/12 04:21:43 UTC

svn commit: r1713964 - /incubator/sirona/trunk/agent/javaagent/pom.xml

Author: rmannibucau
Date: Thu Nov 12 03:21:43 2015
New Revision: 1713964

URL: http://svn.apache.org/viewvc?rev=1713964&view=rev
Log:
exclude test extension/listener from javaagent test jar

Modified:
    incubator/sirona/trunk/agent/javaagent/pom.xml

Modified: incubator/sirona/trunk/agent/javaagent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sirona/trunk/agent/javaagent/pom.xml?rev=1713964&r1=1713963&r2=1713964&view=diff
==============================================================================
--- incubator/sirona/trunk/agent/javaagent/pom.xml (original)
+++ incubator/sirona/trunk/agent/javaagent/pom.xml Thu Nov 12 03:21:43 2015
@@ -129,12 +129,15 @@
             <goals>
               <goal>test-jar</goal>
             </goals>
+            <configuration>
+              <excludes> <!-- packaged to be reusable => don't reuse the test config -->
+                <exclude>sirona.properties</exclude>
+                <exclude>META-INF/services/*</exclude>
+              </excludes>
+            </configuration>
           </execution>
         </executions>
         <configuration>
-          <excludes> <!-- packaged to be reusable => don't reuse the test config -->
-            <exclude>**/sirona.properties</exclude>
-          </excludes>
           <archive>
             <manifestEntries>
               <Premain-Class>${agent.class}</Premain-Class>