summaryrefslogtreecommitdiffstats
path: root/it/it-plugins
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-26 18:48:19 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-29 11:03:33 +0200
commit64ff328a9bc2cf0ea575599d37ea6dfe4ac6274e (patch)
tree86d40f3746b73da164aae16fce4eff24d2c0054f /it/it-plugins
parente140eb43c7384fcaee539e9b1a07fae48cf95da2 (diff)
downloadsonarqube-64ff328a9bc2cf0ea575599d37ea6dfe4ac6274e.tar.gz
sonarqube-64ff328a9bc2cf0ea575599d37ea6dfe4ac6274e.zip
Fix execution of integration tests from command-line
Diffstat (limited to 'it/it-plugins')
-rw-r--r--it/it-plugins/pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/it/it-plugins/pom.xml b/it/it-plugins/pom.xml
new file mode 100644
index 00000000000..d901ff66a44
--- /dev/null
+++ b/it/it-plugins/pom.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.sonarsource.it</groupId>
+ <artifactId>it-parent</artifactId>
+ <version>5.2-SNAPSHOT</version>
+ </parent>
+ <artifactId>it-plugins</artifactId>
+ <name>SonarQube Integration Tests :: Plugins</name>
+ <description>The fake plugins used by integration tests</description>
+ <packaging>pom</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+
+</project>