Ok, finally i found it myself after days of days of digging :D

In core.clj there is this code:
(http-kit/run-server
    (if (dev? args) (reload/wrap-reload app) app)

Simply change it to this one:
(http-kit/run-server
    (if (dev? args) (reload/wrap-reload app {:dirs ["src" 
"checkouts/subproject/src"]}) app)

You can add as many folders you want, all will get watched for source 
changes.


Am Montag, 24. Februar 2014 06:46:20 UTC+1 schrieb Sven Richter:
>
> 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 [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to