Skip to content

Commit

Permalink
Upgrades used Clojure version and clj-gui.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gunnar Völkel authored and Gunnar Völkel committed Mar 18, 2013
1 parent 955df7f commit 42b727a
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 17 deletions.
39 changes: 26 additions & 13 deletions .classpath
@@ -1,18 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="resources"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="classes"/>
<classpathentry kind="lib" path="lib/clojure-1.2.1.jar"/>
<classpathentry kind="lib" path="lib/core.incubator-0.1.0.jar"/>
<classpathentry kind="lib" path="lib/swingx-action-1.6.3.jar"/>
<classpathentry kind="lib" path="lib/swingx-autocomplete-1.6.3.jar"/>
<classpathentry kind="lib" path="lib/swingx-common-1.6.3.jar"/>
<classpathentry kind="lib" path="lib/swingx-core-1.6.3.jar"/>
<classpathentry kind="lib" path="lib/swingx-painters-1.6.3.jar"/>
<classpathentry kind="lib" path="lib/swingx-plaf-1.6.3.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/clj-gui"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="dev-resources">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="resources">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="target/classes">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="con" path="ccw.LEININGEN_CONTAINER">
<attributes>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="clj-debug/target/native/linux/x86_64"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -5,3 +5,5 @@
.lein-deps-sum
pom.xml
ccw.repl.cmdhistory.prefs
.lein-repl-history
target
6 changes: 6 additions & 0 deletions .project
Expand Up @@ -6,6 +6,11 @@
<project>clj-gui</project>
</projects>
<buildSpec>
<buildCommand>
<name>ccw.leiningen.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>ccw.builder</name>
<arguments>
Expand All @@ -20,5 +25,6 @@
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>ccw.nature</nature>
<nature>ccw.leiningen.nature</nature>
</natures>
</projectDescription>
9 changes: 5 additions & 4 deletions project.clj
@@ -1,10 +1,11 @@
(defproject clj-debug "0.6.5"
(defproject clj-debug "0.7.0"
:description "Library for debugging Clojure programms with support for tracing, timing and inspection."
:url "https://github.com/guv/clj-debug"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies
[[org.clojure/clojure "1.2.1"]
[org.clojure/core.incubator "0.1.0"]
[clj-gui "0.2.1"]]
[[org.clojure/clojure "1.5.1"]
[org.clojure/core.incubator "0.1.2"]
[clj-gui "0.3.0"]]
:aot [debug.inspect.inspectable])

0 comments on commit 42b727a

Please sign in to comment.