Repository: camel
Updated Branches:
  refs/heads/master 3756fba22 -> 1cbae7565


CAMEL-11432- common flag to skipTests


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ee688395
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ee688395
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ee688395

Branch: refs/heads/master
Commit: ee688395595656386656dcfea0e246f1e92f66ff
Parents: ea30e54
Author: onders86 <ondersez...@gmail.com>
Authored: Wed Jun 21 16:45:03 2017 +0300
Committer: onders86 <ondersez...@gmail.com>
Committed: Wed Jun 21 16:45:03 2017 +0300

----------------------------------------------------------------------
 components/camel-grpc/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ee688395/components/camel-grpc/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-grpc/pom.xml b/components/camel-grpc/pom.xml
index e1a2740..727fbfb 100644
--- a/components/camel-grpc/pom.xml
+++ b/components/camel-grpc/pom.xml
@@ -134,7 +134,7 @@
             <configuration>
               <scripts>
                 <script><![CDATA[
-                  
project.properties['skip-test']=project.properties['os.detected.classifier'].matches('^.*?(linux|windows|osx)-x86.*$')
 ? 'false' : 'true';
+                  
project.properties['skipTests']=project.properties['os.detected.classifier'].matches('^.*?(linux|windows|osx)-x86.*$')
 ? 'false' : 'true';
                 ]]></script>
               </scripts>
             </configuration>
@@ -159,7 +159,7 @@
           
<protocArtifact>com.google.protobuf:protoc:${protobuf-version}:exe:${os.detected.classifier}</protocArtifact>
           <pluginId>grpc-java</pluginId>
           
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc-version}:exe:${os.detected.classifier}</pluginArtifact>
-          <skip>${skip-test}</skip>
+          <skip>${skipTests}</skip>
         </configuration>
         <executions>
           <execution>
@@ -181,7 +181,7 @@
               <goal>testCompile</goal>
             </goals>
             <configuration>
-              <skip>${skip-test}</skip>
+              <skip>${skipTests}</skip>
             </configuration>
           </execution>
         </executions>
@@ -191,7 +191,7 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <skipTests>${skip-test}</skipTests>
+          <skipTests>${skipTests}</skipTests>
         </configuration>
       </plugin>
     </plugins>

Reply via email to