diff options
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> |