diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-26 19:56:08 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-29 11:03:33 +0200 |
commit | b69c9535ee7abef287dfd9dd53332620cfe3a54a (patch) | |
tree | 373269fa6c9b6f17b85677c07ee944ecdea6732f /it/it-plugins/sonar-fake-plugin/pom.xml | |
parent | 64ff328a9bc2cf0ea575599d37ea6dfe4ac6274e (diff) | |
download | sonarqube-b69c9535ee7abef287dfd9dd53332620cfe3a54a.tar.gz sonarqube-b69c9535ee7abef287dfd9dd53332620cfe3a54a.zip |
Add integration tests on updatecenter and testing categories
Diffstat (limited to 'it/it-plugins/sonar-fake-plugin/pom.xml')
-rw-r--r-- | it/it-plugins/sonar-fake-plugin/pom.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/it/it-plugins/sonar-fake-plugin/pom.xml b/it/it-plugins/sonar-fake-plugin/pom.xml new file mode 100644 index 00000000000..c2ce047c495 --- /dev/null +++ b/it/it-plugins/sonar-fake-plugin/pom.xml @@ -0,0 +1,41 @@ +<?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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.sonarsource.it</groupId> + <artifactId>it-plugins</artifactId> + <version>5.2-SNAPSHOT</version> + </parent> + + <artifactId>sonar-fake-plugin</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>sonar-plugin</packaging> + <name>Plugins :: Fake</name> + <description>SonarQube Integration Tests :: Fake Plugin</description> + + <dependencies> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-plugin-api</artifactId> + <version>${apiVersion}</version> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-packaging-maven-plugin</artifactId> + <extensions>true</extensions> + <version>1.12.1</version> + <configuration> + <pluginClass>FakePlugin</pluginClass> + <pluginKey>fake</pluginKey> + </configuration> + </plugin> + </plugins> + </build> +</project> |