Skip to content

Commit

Permalink
skip integration test by default. (apache#5421)
Browse files Browse the repository at this point in the history
  • Loading branch information
maoyiz authored and hengyunabc committed Jan 9, 2020
1 parent 1ec293b commit 84c80b9
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 0 deletions.
17 changes: 17 additions & 0 deletions dubbo-configcenter/dubbo-configcenter-etcd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
<name>${project.artifactId}</name>
<description>The etcd implementation of the config-center api</description>

<properties>
<skip_integration_test>true</skip_integration_test>
</properties>

<dependencies>
<dependency>
<groupId>io.etcd</groupId>
Expand All @@ -55,4 +59,17 @@
<version>${project.parent.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven_surefire_version}</version>
<configuration>
<skipTests>${skip_integration_test}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
17 changes: 17 additions & 0 deletions dubbo-metadata/dubbo-metadata-report-etcd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@

<artifactId>dubbo-metadata-report-etcd</artifactId>

<properties>
<skip_integration_test>true</skip_integration_test>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
Expand All @@ -51,4 +55,17 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven_surefire_version}</version>
<configuration>
<skipTests>${skip_integration_test}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
17 changes: 17 additions & 0 deletions dubbo-registry/dubbo-registry-consul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@

<artifactId>dubbo-registry-consul</artifactId>

<properties>
<skip_integration_test>true</skip_integration_test>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
Expand All @@ -44,4 +48,17 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven_surefire_version}</version>
<configuration>
<skipTests>${skip_integration_test}</skipTests>
</configuration>
</plugin>
</plugins>
</build>

</project>
15 changes: 15 additions & 0 deletions dubbo-remoting/dubbo-remoting-etcd3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
<assertj.version>3.13.2</assertj.version>
<skip_integration_test>true</skip_integration_test>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
Expand Down Expand Up @@ -89,5 +91,18 @@

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven_surefire_version}</version>
<configuration>
<skipTests>${skip_integration_test}</skipTests>
</configuration>
</plugin>
</plugins>
</build>


</project>

0 comments on commit 84c80b9

Please sign in to comment.