aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/pom.xml
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2015-10-15 05:25:27 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-29 16:12:28 +0100
commitd7d20c58c771f3be6cc44b37dc5b741443beca03 (patch)
tree076800627d16da483866b467b52eba151d8f8f4b /sonar-ws/pom.xml
parentbed7d7f1897ab5f0e2bfa0e4e6ac61e3d413c5dc (diff)
downloadsonarqube-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-ws/pom.xml')
-rw-r--r--sonar-ws/pom.xml29
1 files changed, 0 insertions, 29 deletions
diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml
index 3c6a7e10c04..3409a153d02 100644
--- a/sonar-ws/pom.xml
+++ b/sonar-ws/pom.xml
@@ -13,10 +13,6 @@
<name>SonarQube :: Web Service</name>
<description>Protocol Buffers specification of Web Services</description>
- <properties>
- <sonar.exclusions>src/main/gen-java/**/*</sonar.exclusions>
- </properties>
-
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
@@ -68,29 +64,4 @@
<artifactId>http-request</artifactId>
</dependency>
</dependencies>
-
-
- <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>
- </plugins>
-
- </build>
</project>