[OLINGO-355] Adding generated source folder to server-core/pom.xml to fix compilation issue faced after eclipse import

This commit is contained in:
vikram.pancholi 2014-07-10 16:58:40 +05:30 committed by Michael Bolz
parent a82f399c5f
commit 9469058193
1 changed files with 19 additions and 1 deletions

View File

@ -74,7 +74,25 @@
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated-sources/antlr4</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr.version}</version>
<executions>