diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-03 23:06:45 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-10 14:05:59 +0100 |
commit | 605a62f9e0342e63b55b50e76db3260dee1ef748 (patch) | |
tree | 798721d3f9b4af5df1eda911f37353a317deab44 /sonar-core/pom.xml | |
parent | e1104eb967ad973c40ac2ae7f50732aaef0cc734 (diff) | |
download | sonarqube-605a62f9e0342e63b55b50e76db3260dee1ef748.tar.gz sonarqube-605a62f9e0342e63b55b50e76db3260dee1ef748.zip |
SONAR-2570 compress db table FILE_SOURCES
Diffstat (limited to 'sonar-core/pom.xml')
-rw-r--r-- | sonar-core/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index b1d6b8696e9..3682bc1fb64 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -53,6 +53,12 @@ </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-batch-protocol</artifactId> + <version>${project.version}</version> + </dependency> + + <dependency> + <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-home</artifactId> </dependency> <dependency> @@ -184,6 +190,24 @@ <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-jar-plugin</artifactId> <executions> |