diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-11-25 10:54:56 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-11-30 19:01:45 +0100 |
commit | bba16edb777a69137b3122dfbc5b898049f274c5 (patch) | |
tree | 17be034a5b93b109d2dd1148398225f77875e56b /sonar-batch-protocol | |
parent | 08dbeeee650d4792b6aaabb109ccd9504d282804 (diff) | |
download | sonarqube-bba16edb777a69137b3122dfbc5b898049f274c5.tar.gz sonarqube-bba16edb777a69137b3122dfbc5b898049f274c5.zip |
SONAR-7054 use ws-client in batch
Diffstat (limited to 'sonar-batch-protocol')
-rw-r--r-- | sonar-batch-protocol/pom.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sonar-batch-protocol/pom.xml b/sonar-batch-protocol/pom.xml index e494d430f7b..5eb2081c161 100644 --- a/sonar-batch-protocol/pom.xml +++ b/sonar-batch-protocol/pom.xml @@ -1,5 +1,6 @@ <?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"> +<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.sonarsource.sonarqube</groupId> @@ -9,12 +10,13 @@ <artifactId>sonar-batch-protocol</artifactId> <name>SonarQube :: Batch :: Protocol</name> - + <description>Classes used for communication between batch and server</description> - + <properties> <!-- Viewer is for our internal use. This is not production code and mostly generated with Eclipse GUI builder --> - <sonar.exclusions>src/main/java/org/sonar/batch/protocol/viewer/**</sonar.exclusions> + <sonar.exclusions>target/generated-sources/**/*,src/main/java/org/sonar/batch/protocol/viewer/**</sonar.exclusions> + <sonar.test.exclusions>target/generated-test-sources/**/*</sonar.test.exclusions> </properties> <dependencies> |