aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plugins/foo-plugin-v2/pom.xml
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-06-20 08:35:37 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-06-29 17:23:19 +0200
commit44eaa37244f20ca311a1a797c961c80706b35251 (patch)
treebd7994fe9a9f2010b4e2e3737be167af27ba8d1c /tests/plugins/foo-plugin-v2/pom.xml
parent6f754683a488d38ae95e3f6143f81a1b8f24b0fb (diff)
downloadsonarqube-44eaa37244f20ca311a1a797c961c80706b35251.tar.gz
sonarqube-44eaa37244f20ca311a1a797c961c80706b35251.zip
SONAR-9442 Send email to profile admin on each qprofile update
Diffstat (limited to 'tests/plugins/foo-plugin-v2/pom.xml')
-rw-r--r--tests/plugins/foo-plugin-v2/pom.xml75
1 files changed, 75 insertions, 0 deletions
diff --git a/tests/plugins/foo-plugin-v2/pom.xml b/tests/plugins/foo-plugin-v2/pom.xml
new file mode 100644
index 00000000000..db2fc2c5916
--- /dev/null
+++ b/tests/plugins/foo-plugin-v2/pom.xml
@@ -0,0 +1,75 @@
+<?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>../..</relativePath>
+ </parent>
+ <artifactId>foo-plugin-v2</artifactId>
+ <name>SonarQube :: Plugins :: Foo (V2)</name>
+ <packaging>sonar-plugin</packaging>
+ <description>Sample of plugin to document and test available APIs</description>
+
+ <properties>
+ <sonar.skip>true</sonar.skip>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.sonarsource.sonarqube</groupId>
+ <artifactId>sonar-plugin-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- unit testing -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.assertj</groupId>
+ <artifactId>assertj-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
+ <artifactId>sonar-packaging-maven-plugin</artifactId>
+ <configuration>
+ <pluginKey>foo</pluginKey>
+ <pluginName>Foo</pluginName>
+ <pluginClass>org.sonar.foo.FooPlugin</pluginClass>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>