You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2015/08/28 19:20:44 UTC

svn commit: r1698380 - /httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml

Author: olegk
Date: Fri Aug 28 17:20:44 2015
New Revision: 1698380

URL: http://svn.apache.org/r1698380
Log:
Added profile with disabled OSGi tests

Modified:
    httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml

Modified: httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml?rev=1698380&r1=1698379&r2=1698380&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml (original)
+++ httpcomponents/httpcore/trunk/httpcore-osgi/pom.xml Fri Aug 28 17:20:44 2015
@@ -221,4 +221,28 @@
 
     </plugins>
   </reporting>
+
+  <profiles>
+    <profile>
+      <id>disableOSGiTests</id>
+      <activation>
+        <property>
+          <name>disableOSGiTests</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>