diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-29 17:17:46 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-30 11:43:17 +0200 |
commit | 8f5b86c9ec7b6f8bbf37c828a7d1bb238af66e16 (patch) | |
tree | 886bed32fa822271780b9a40b430fe637b34c88e /sonar-ws/pom.xml | |
parent | 314af7bed8b61cf179a1896c810967c6f5257a6a (diff) | |
download | sonarqube-8f5b86c9ec7b6f8bbf37c828a7d1bb238af66e16.tar.gz sonarqube-8f5b86c9ec7b6f8bbf37c828a7d1bb238af66e16.zip |
Move protobuf specs of WS into new module sonar-ws
Diffstat (limited to 'sonar-ws/pom.xml')
-rw-r--r-- | sonar-ws/pom.xml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml new file mode 100644 index 00000000000..95d9e89a25f --- /dev/null +++ b/sonar-ws/pom.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>5.2-SNAPSHOT</version> + </parent> + + <artifactId>sonar-ws</artifactId> + <name>SonarQube :: Web Service</name> + <description>Protocol Buffers specification of Web Services</description> + + <dependencies> + <dependency> + <groupId>com.google.protobuf</groupId> + <artifactId>protobuf-java</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> |