Questions tagged [clojuresque]

clojuresque is now a plugin for Gradle, which adds Clojure support. It allows compilation with automatic namespace recognition. The plugin is based on the Java plugin and hooks into the standard configurations and archives.

Usage

Create a build.gradle script in the root directory of your project. Note that gradle derives the project name from the name of this directory!

buildscript {
   repositories {
      maven { url 'http://clojars.org/repo' }
    }
dependencies {
    classpath 'clojuresque:clojuresque:1.0.0'
    }
}

apply plugin: 'clojure'

Documentation

4 questions
4
votes
2 answers

Using gradle/clojuresq to build clojure

I'm trying to use gradle/Clojuresque to build clojure code, run it, and get uberjar. I use hints from http://dev.clojure.org/display/doc/Getting+Started+with+Gradle, https://bitbucket.org/kotarak/clojuresque/wiki/Getting%20Started, and 'Could not…
prosseek
  • 182,215
  • 215
  • 566
  • 871
2
votes
1 answer

'Could not find us.bpsm:edn-java:0.4.3' error with Gradle for Clojure (Clojuresque)

I'm trying to use Gradle for Clojure (Clojuresque), I have this build.gradle. buildscript { repositories { maven { url "http://clojars.org/repo" } } dependencies { classpath "clojuresque:clojuresque:1.7.0" } } apply plugin:…
prosseek
  • 182,215
  • 215
  • 566
  • 871
0
votes
1 answer

JS lambda in Clojurs script

Can I have a JS lambdas in Clojurescript? I have .then((entry) => console.log(entry)) How will it work in CLJS?
user9240263
0
votes
1 answer

execute clojure script in gradle

I've got project structure like this functional-lore clojure-project src\main\clojure\com.lapots.functional.clojure script.clj build.gradle build.gradle Where root build.gradle looks like this buildscript { …
lapots
  • 12,553
  • 32
  • 121
  • 242