Repository: ignite Updated Branches: refs/heads/master a383f2e79 -> e18dfdafc
IGNITE-1187: Need to improve project setup in Eclipse Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e18dfdaf Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e18dfdaf Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e18dfdaf Branch: refs/heads/master Commit: e18dfdafca3c01ba48958562e1d07c68e71c9302 Parents: a383f2e Author: Edouard Chevalier <[email protected]> Authored: Mon Feb 8 14:09:03 2016 +0300 Committer: Denis Magda <[email protected]> Committed: Mon Feb 8 14:09:03 2016 +0300 ---------------------------------------------------------------------- .gitignore | 3 ++ modules/yardstick/.gitignore | 2 + parent/pom.xml | 92 ++++++++++++++++++++++++++++++++++++++- 3 files changed, 96 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/e18dfdaf/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index e4e061c..4073a58 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,6 @@ git-patch-prop-local.sh **/cpp/**/vs/Win32/ **/dotnet/**/obj/ /modules/platforms/cpp/doc/ +.settings +.classpath +.project http://git-wip-us.apache.org/repos/asf/ignite/blob/e18dfdaf/modules/yardstick/.gitignore ---------------------------------------------------------------------- diff --git a/modules/yardstick/.gitignore b/modules/yardstick/.gitignore new file mode 100644 index 0000000..a2c5e4a --- /dev/null +++ b/modules/yardstick/.gitignore @@ -0,0 +1,2 @@ +/bin +/libs http://git-wip-us.apache.org/repos/asf/ignite/blob/e18dfdaf/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 437a30b..e189807 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -513,7 +513,7 @@ <Embed-Directory>lib</Embed-Directory> <Embed-Transitive>${osgi.embed.transitive}</Embed-Transitive> <_failok>${osgi.fail.ok}</_failok> - <_invalidfilenames /> + <_invalidfilenames/> </instructions> </configuration> <executions> @@ -1013,5 +1013,95 @@ </plugins> </build> </profile> + <profile> + <id>m2e</id> + <!--This profile is activated when eclipse interacts with maven (using m2e).--> + <activation> + <property> + <name>m2e.version</name> + </property> + </activation> + <build> + <plugins> + <plugin> + <!--eclipse do not support duplicated package-info.java, in both src and test.--> + <artifactId>maven-compiler-plugin</artifactId> + <executions> + <execution> + <id>default-testCompile</id> + <phase>test-compile</phase> + <configuration> + <testExcludes> + <exclude>**/package-info.java</exclude> + </testExcludes> + </configuration> + <goals> + <goal>testCompile</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <versionRange>[1.7,)</versionRange> + <goals> + <goal>run</goal> + <goal>properties-augmentation</goal> + <goal>licenses-file-rename</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>flatten-maven-plugin</artifactId> + <versionRange>[1.0.0-beta-3,)</versionRange> + <goals> + <goal>flatten</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <versionRange>[1.3.2,)</versionRange> + <goals> + <goal>java</goal> + <goal>default</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> </project>
