You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zipkin.apache.org by ad...@apache.org on 2019/05/08 08:03:15 UTC

[incubator-zipkin] branch master updated: Fixes activation of invoker tests

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 84ca551  Fixes activation of invoker tests
84ca551 is described below

commit 84ca551381d39c3c7163ad5c2dc1e08a2ea90564
Author: Adrian Cole <ac...@pivotal.io>
AuthorDate: Wed May 8 16:03:04 2019 +0800

    Fixes activation of invoker tests
---
 zipkin-server/pom.xml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/zipkin-server/pom.xml b/zipkin-server/pom.xml
index 2574765..d0eb8dd 100644
--- a/zipkin-server/pom.xml
+++ b/zipkin-server/pom.xml
@@ -305,7 +305,9 @@
     <profile>
       <id>integration</id>
       <activation>
-        <activeByDefault>true</activeByDefault>
+        <property>
+          <name>!skipTests</name>
+        </property>
       </activation>
       <build>
         <plugins>
@@ -316,9 +318,6 @@
             <configuration>
               <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
               <settingsFile>src/it/settings.xml</settingsFile>
-              <profiles>
-                <profile>!release</profile>
-              </profiles>
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <postBuildHookScript>verify</postBuildHookScript>
               <addTestClassPath>true</addTestClassPath>