diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-08 09:43:11 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-08 09:43:21 +0200 |
commit | 72f0502fda8bf96f9f068ca8e6b6e09a66900c5b (patch) | |
tree | 7253e34f54417208a810aa0163d5f5adaeb2b040 /server/sonar-process/pom.xml | |
parent | 1a431d25b96e4f2d080e3015ee518e1ad01bcd13 (diff) | |
download | sonarqube-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.xml | 35 |
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> |