diff options
Diffstat (limited to 'server/sonar-server/pom.xml')
-rw-r--r-- | server/sonar-server/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 8a3deb28119..dbf10b60e4b 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -265,6 +265,24 @@ <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> |