You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/09/13 10:58:43 UTC

incubator-joshua git commit: added auto loading of eclipse code formatting

Repository: incubator-joshua
Updated Branches:
  refs/heads/master 3b5811aed -> 7e019c366


added auto loading of eclipse code formatting

If you add a project in Eclipse by importing an existing Maven
project, this should get set.


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/7e019c36
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/7e019c36
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/7e019c36

Branch: refs/heads/master
Commit: 7e019c366d08556822dd0a5a5f07a113a5466d5c
Parents: 3b5811a
Author: Matt Post <po...@cs.jhu.edu>
Authored: Tue Sep 13 12:58:32 2016 +0200
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Tue Sep 13 12:58:32 2016 +0200

----------------------------------------------------------------------
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/7e019c36/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 36a14f0..feb676e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,6 +194,15 @@
         <artifactId>findbugs-maven-plugin</artifactId>
         <version>${findbugs.version}</version>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+	      <artifactId>maven-eclipse-plugin</artifactId>
+	      <version>2.10</version>
+	      <configuration>
+          <workspace>${basedir}</workspace>
+          <workspaceCodeStylesURL>${basedir}/eclipse-codeformat.xml</workspaceCodeStylesURL>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <dependencies>