Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
restructure eclim sources to be grouped by plugin
Browse files Browse the repository at this point in the history
- layout more familiar to eclipse plugin developers
- better grouping of functionality by plugin (no more wonder which
  plugin provides a particular vim file).
- simplifies building/installing
  • Loading branch information
ervandew committed Oct 2, 2011
1 parent 66e80d7 commit 3ca1813
Show file tree
Hide file tree
Showing 1,067 changed files with 741 additions and 1,064 deletions.
23 changes: 18 additions & 5 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="lib" path="lib/junit-4.9.jar"/>
<classpathentry kind="lib" path="lib/testng-5.1-jdk15.jar"/>
<classpathentry kind="lib" path="ant/lib/junit-4.9.jar"/>
<classpathentry kind="lib" path="ant/lib/testng-5.1-jdk15.jar"/>
<classpathentry kind="lib" path="src/eclipse/plugins/org.eclim/lib/commons-cli-1.1.jar"/>
<classpathentry kind="lib" path="src/eclipse/plugins/org.eclim/lib/commons-lang-2.4.jar"/>
<classpathentry kind="lib" path="src/eclipse/plugins/org.eclim/lib/commons-vfs-1.0.jar"/>
Expand Down Expand Up @@ -83,8 +83,21 @@
<classpathentry kind="var" path="FORMIC_HOME/lib/looks-2.1.4.jar"/>
<classpathentry kind="var" path="FORMIC_HOME/lib/miglayout-3.5.0.jar"/>
<classpathentry kind="output" path="build/bin"/>
<classpathentry kind="src" path="src/java" excluding="org/ccil/**"/>
<classpathentry kind="src" path="src/installer/java"/>
<classpathentry kind="src" path="src/test/junit"/>
<classpathentry kind="src" path="org.eclim/java"/>
<classpathentry kind="src" path="org.eclim.cdt/java"/>
<classpathentry kind="src" path="org.eclim.cdt/junit"/>
<classpathentry kind="src" path="org.eclim.core/java"/>
<classpathentry kind="src" path="org.eclim.core/junit"/>
<classpathentry kind="src" path="org.eclim.dltk/java"/>
<classpathentry kind="src" path="org.eclim.dltkruby/java"/>
<classpathentry kind="src" path="org.eclim.dltkruby/junit"/>
<classpathentry kind="src" path="org.eclim.installer/java"/>
<classpathentry kind="src" path="org.eclim.jdt/java"/>
<classpathentry kind="src" path="org.eclim.jdt/junit"/>
<classpathentry kind="src" path="org.eclim.pdt/java"/>
<classpathentry kind="src" path="org.eclim.pdt/junit"/>
<classpathentry kind="src" path="org.eclim.vimplugin/java"/>
<classpathentry kind="src" path="org.eclim.wst/java" excluding="org/ccil/**"/>
<classpathentry kind="src" path="org.eclim.wst/junit"/>
<classpathentry exported="true" kind="src" path="/formic"/>
</classpath>
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
/.ant-targets-build.xml
/.ropeproject
/build
/src/patch/*
/src/nailgun/config.log
/src/nailgun/config.status
/src/nailgun/Makefile
/src/nailgun/ng
/src/nailgun/ng.*
/org.eclim/nailgun/config.log
/org.eclim/nailgun/config.status
/org.eclim/nailgun/Makefile
/org.eclim/nailgun/ng
/org.eclim/nailgun/ng.*
/patch/*
/user.properties
2 changes: 1 addition & 1 deletion .settings/org.eclim.prefs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Sep 30 07:07:16 PDT 2011
eclipse.preferences.version=1
org.eclim.java.checkstyle.config=src/ant/checkstyle/checkstyle.xml
org.eclim.java.checkstyle.config=ant/checkstyle.xml
org.eclim.java.doc.packagenames=org.eclim
org.eclim.java.doc.sourcepath=src/java
org.eclim.java.junit.command=Ant -Dtest.include\=<testcase> test
Expand Down
Loading

0 comments on commit 3ca1813

Please sign in to comment.