aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plugins/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-23 21:31:56 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-25 23:42:50 +0200
commit70b6899988da0d2ba0a39b846e4f1bd3fa27304f (patch)
tree1ac093a87e0fba6b07c6feb6aceae89bdd9663cf /tests/plugins/pom.xml
parent5dd574819854e9ce7e2f4e181e78153a7ecbf828 (diff)
downloadsonarqube-70b6899988da0d2ba0a39b846e4f1bd3fa27304f.tar.gz
sonarqube-70b6899988da0d2ba0a39b846e4f1bd3fa27304f.zip
Move integration tests to directory tests/
Diffstat (limited to 'tests/plugins/pom.xml')
-rw-r--r--tests/plugins/pom.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/plugins/pom.xml b/tests/plugins/pom.xml
new file mode 100644
index 00000000000..2f41319fe52
--- /dev/null
+++ b/tests/plugins/pom.xml
@@ -0,0 +1,62 @@
+<?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.sonarqube</groupId>
+ <artifactId>sonarqube</artifactId>
+ <version>6.5-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <groupId>org.sonarsource.sonarqube.tests</groupId>
+ <artifactId>plugins</artifactId>
+ <name>SonarQube Integration Tests :: Plugins</name>
+ <description>The fake plugins used by integration tests</description>
+ <packaging>pom</packaging>
+
+ <properties>
+ <skipSanityChecks>true</skipSanityChecks>
+ <enforcer.skip>true</enforcer.skip>
+ <maven.deploy.skip>true</maven.deploy.skip>
+ <source.skip>true</source.skip>
+ <apiVersion>${project.parent.version}</apiVersion>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <modules>
+ <module>access-secured-props-plugin</module>
+ <module>base-auth-plugin</module>
+ <module>batch-plugin</module>
+ <module>extension-lifecycle-plugin</module>
+ <module>fake-billing-plugin</module>
+ <module>global-property-change-plugin</module>
+ <module>issue-filter-plugin</module>
+ <module>l10n-fr-pack</module>
+ <module>license-plugin</module>
+ <module>oauth2-auth-plugin</module>
+ <module>project-builder-plugin</module>
+ <module>property-relocation-plugin</module>
+ <module>property-sets-plugin</module>
+ <module>security-plugin</module>
+ <module>server-plugin</module>
+ <module>settings-encryption-plugin</module>
+ <module>settings-plugin</module>
+ <module>sonar-fake-plugin</module>
+ <module>sonar-subcategories-plugin</module>
+ <module>ui-extensions-plugin</module>
+ <module>posttask-plugin</module>
+ <module>ws-plugin</module>
+ </modules>
+</project>