aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process/pom.xml
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-08-08 09:43:11 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-08-08 09:43:21 +0200
commit72f0502fda8bf96f9f068ca8e6b6e09a66900c5b (patch)
tree7253e34f54417208a810aa0163d5f5adaeb2b040 /server/sonar-process/pom.xml
parent1a431d25b96e4f2d080e3015ee518e1ad01bcd13 (diff)
downloadsonarqube-72f0502fda8bf96f9f068ca8e6b6e09a66900c5b.tar.gz
sonarqube-72f0502fda8bf96f9f068ca8e6b6e09a66900c5b.zip
SONAR-4898 - Created a DummyOKApplication for Unit test of ProcessWrapper
Diffstat (limited to 'server/sonar-process/pom.xml')
-rw-r--r--server/sonar-process/pom.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml
index 457068b014c..d5ee17653b5 100644
--- a/server/sonar-process/pom.xml
+++ b/server/sonar-process/pom.xml
@@ -68,5 +68,40 @@
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.codehaus.sonar</groupId>
+ <artifactId>sonar-process-test</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <phase>process-test-resources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.codehaus.sonar</groupId>
+ <artifactId>sonar-process-test</artifactId>
+ <version>${project.version}</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/dummyApp</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>