diff options
-rw-r--r-- | server/pom.xml | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/server/pom.xml b/server/pom.xml index b8566f2b39..479935666c 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -293,6 +293,46 @@ <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> + + <pluginManagement> + <plugins> + <!-- Make Eclipse add the source folder --> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <versionRange>[1.0,)</versionRange> + <goals> + <goal>add-source</goal> +<!-- + <goal>add-test-source</goal> + <goal>add-resource</goal> + <goal>add-test-resource</goal> + <goal>maven-version</goal> + <goal>parse-version</goal> +--> + </goals> + </pluginExecutionFilter> + <action> + <execute> + <runOnConfiguration>true</runOnConfiguration> + <!-- <runOnIncremental>true</runOnIncremental> --> + </execute> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> - + </project> |