-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 1.18 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
apply plugin: "clojure"
apply plugin: "eclipse"
apply plugin: "idea"
aotCompile = true
repositories {
mavenCentral()
clojarsRepo()
}
dependencies {
compile "org.clojure:clojure:1.3.0"
}
/* Add Counterclockwise
*/
eclipse {
project {
natures "ccw.nature"
}
}
/* Adds clojuresque to the (build) classpath
*/
buildscript {
// Works on Gradle 1.0-milestone-9, however it doesn't on milestone-3
repositories { maven { url "http://clojars.org/repo" } }
// On 1.0-milestone-3
// repositories { mavenRepo ( urls: "http://clojars.org/repo" ) }
/* Clojuresque 1.4.5 causes the following exception (also on gradle milestone-3):
Cause: Could not generate a proxy class for class clojuresque.ClojureCompileTask.
Cause: org/gradle/internal/service/ServiceRegistry
*/
/* Clojuresque 1.4.1 causes the following exception (on gradle m9 and plus):
A problem occurred evaluating root project 'clojure-gradle-bootstrap'.
> Could not find property 'classesDir' on source set main.
*/
// Check latest version https://clojars.org/clojuresque
// On 1.0-milestone-3
// dependencies { classpath "clojuresque:clojuresque:1.4.1" }
dependencies { classpath "clojuresque:clojuresque:1.5.2" }
}