diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-01-26 18:24:01 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-02 17:27:19 +0100 |
commit | 35f1487144f72e49b73383c0e96d73b53c60c641 (patch) | |
tree | ceb208c0c3d0e631561c9807d394ca97503df1ae /sonar-batch-protocol/pom.xml | |
parent | 7a15c4d1064bbda06a204427bc71a26d9091647a (diff) | |
download | sonarqube-35f1487144f72e49b73383c0e96d73b53c60c641.tar.gz sonarqube-35f1487144f72e49b73383c0e96d73b53c60c641.zip |
Use protocol buffers format for analysis reports
Diffstat (limited to 'sonar-batch-protocol/pom.xml')
-rw-r--r-- | sonar-batch-protocol/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sonar-batch-protocol/pom.xml b/sonar-batch-protocol/pom.xml index a221b25fbe6..399c4a242e0 100644 --- a/sonar-batch-protocol/pom.xml +++ b/sonar-batch-protocol/pom.xml @@ -14,6 +14,10 @@ <dependencies> <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</artifactId> + </dependency> + <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> @@ -43,6 +47,24 @@ <build> <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>add-source</id> + <phase>generate-sources</phase> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sources> + <source>src/main/gen-java</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> |