diff options
author | Martin Bonato <mbonato@datentechnik-innovation.com> | 2015-04-09 10:51:00 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2015-06-19 11:09:30 +0200 |
commit | cae3dae9af7192c041a2725dfa828e615344e3dc (patch) | |
tree | 92648200a85d5a6cc295c52931b5fa64622d01d6 /id/server/moa-id-commons/pom.xml | |
parent | c9518b7d9772240b0d840f9175f8e576a5f6d3f6 (diff) | |
download | moa-id-spss-cae3dae9af7192c041a2725dfa828e615344e3dc.tar.gz moa-id-spss-cae3dae9af7192c041a2725dfa828e615344e3dc.tar.bz2 moa-id-spss-cae3dae9af7192c041a2725dfa828e615344e3dc.zip |
Add maven-build-helper-plugin to include moa-id-commons/target/generated-sources/xjc in build path in eclipse.
Diffstat (limited to 'id/server/moa-id-commons/pom.xml')
-rw-r--r-- | id/server/moa-id-commons/pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index dd33a9198..e4a46238e 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -207,7 +207,26 @@ </pluginManagement> <plugins> - + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.9.1</version> + <executions> + <execution> + <id>add-source</id> + <phase>generate-sources</phase> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sources> + <source>target/generated-sources/xjc</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> |