Hi,

I tried it with a junction already and tried it now once more with the tool 
you provided as a link. It still does not work.
This are the project.clj of the two projects:

(defproject
  lweb
  "0.1.0-SNAPSHOT"
  :repl-options
  {:init-ns lweb.repl}
  :dependencies
  [[ring-server "0.3.1"]
dependencies
...
   ; own ones
   [friendui "0.1.0-SNAPSHOT"] ;my own project i am linking to
   ; added ones
...]
  :cljsbuild
  {:builds
    [
     {:source-paths ["src-cljs/epics"],
      :compiler
                    {:pretty-print false,
                     :output-to "resources/public/js/cljs/epics-cljs.js",
                     :externs ["resources/public/js/canvas-externs.js"]
                     :optimizations :advanced}}
   }
  :ring
  {:handler lweb.handler/app,
   :init lweb.handler/init,
   :destroy lweb.handler/destroy}
  :profiles
  {:uberjar {:aot :all},
   :production
   {:ring
    {:open-browser? false, :stacktraces? false, :auto-reload? false}},
   :dev
   {:dependencies [[ring-mock "0.1.5"] [ring/ring-devel "1.2.1"]],
    :env {:dev true}}}
  :url
  "http://example.com/FIXME";
  :main
  lweb.core
  :plugins
  [[lein-ring "0.8.10"] [lein-environ "0.4.0"] [lein-cljsbuild "1.0.2"]]
  :description
  "FIXME: write description"
  :min-lein-version "2.0.0")


The project.clj of the linked project:
(defproject friendui "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME";
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.5.1"]
                 [com.datomic/datomic-pro "0.9.4556"]
                 [midje "1.6.2" :scope "test"]
                 [org.clojure/core.cache "0.6.3"]
                 [com.cemerick/friend "0.2.0"]]
  :plugins [[lein-midje "3.1.1"]]
  :test-paths ["test" "test/resources"]
  )


Maybe you see the problem?

Best Regards,
Sven


Am Mittwoch, 26. Februar 2014 10:28:06 UTC+1 schrieb Niels van Klaveren:
>
> Windows (7) has different versions of linking. For checkouts to work on 
> Windows 7 you need to have a *junction* to the directory, not a symbolic 
> link.
> I make mine with Link Shell Extension for Windows 
> Explorer<http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html>, 
> and have no problems.
>
> On Monday, February 24, 2014 6:46:20 AM UTC+1, Sven Richter wrote:
>>
>> Hi,
>>
>> I already posted this on SO, but as I got no answer there yet I will try 
>> here too.
>>
>> I have two clojure projects, one a luminus project (main) with http-kit 
>> and a second (sub) plain clojure project with a single dependency to 
>> datomic.
>> Now I added the checkouts folder to "main" and inside made a link to 
>> "sub".
>> When I start "main" with "lein run -dev" "sub" is recognized and put on 
>> the classpath, however, every change I do to "sub" source files are not 
>> recognized until I restart my server.
>>
>> I am working on W7 with Oracle JDK7 and created the link with windows 
>> mklink tool. Any Ideas what might be wrong here?
>>
>> Best Regards,
>> Sven
>>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to