diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2015-10-15 05:25:27 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-10-29 16:12:28 +0100 |
commit | d7d20c58c771f3be6cc44b37dc5b741443beca03 (patch) | |
tree | 076800627d16da483866b467b52eba151d8f8f4b /sonar-batch-protocol/pom.xml | |
parent | bed7d7f1897ab5f0e2bfa0e4e6ac61e3d413c5dc (diff) | |
download | sonarqube-d7d20c58c771f3be6cc44b37dc5b741443beca03.tar.gz sonarqube-d7d20c58c771f3be6cc44b37dc5b741443beca03.zip |
Execute Protocol Buffer compiler during build
Dependency for compiler selected based on platform. Supported platforms
are Windows/Linux x86/64 and Mac OS. Configuration in root POM to avoid
duplication.
This also makes version of compiler consistent with version of library.
Previously it was 3.0.0-a3 and 3.0.0-beta-1 respectively, now both are
3.0.0-beta-1. And removes all existing auto generated files and scripts
for their creation as well as their traces (such as comments and
exclusions for SonarQube).
Diffstat (limited to 'sonar-batch-protocol/pom.xml')
-rw-r--r-- | sonar-batch-protocol/pom.xml | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/sonar-batch-protocol/pom.xml b/sonar-batch-protocol/pom.xml index abb0b437e04..ef276512cd4 100644 --- a/sonar-batch-protocol/pom.xml +++ b/sonar-batch-protocol/pom.xml @@ -12,10 +12,6 @@ <description>Classes used for communication between batch and server</description> - <properties> - <sonar.exclusions>src/main/gen-java/**/*</sonar.exclusions> - </properties> - <dependencies> <dependency> <groupId>net.jpountz.lz4</groupId> @@ -59,24 +55,6 @@ <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> @@ -85,4 +63,5 @@ </plugin> </plugins> </build> + </project> |