-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
43 lines (36 loc) · 846 Bytes
/
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
plugins {
id 'org.ajoberstar.defaults' version '0.11.0'
id 'gradle-clojure.clojure' version '0.3.1'
// TODO remove when Gradle dependency locking is available
id 'nebula.dependency-lock' version '5.0.4'
}
group = 'org.ajoberstar'
reckon {
normal = scopeFromProp()
preRelease = snapshotFromProp()
}
repositories {
jcenter()
maven {
name = 'Clojars'
url = 'https://repo.clojars.org/'
}
}
dependencies {
compile 'org.clojure:clojure:1.9.0'
compile 'org.clojure:tools.macro:0.1.2'
testCompile 'junit:junit:4.12'
devCompile 'org.clojure:tools.namespace:0.3.0-alpha4'
}
publishing {
repositories {
maven {
name = 'Clojars'
url = 'https://repo.clojars.org/'
credentials {
username = System.env['CLOJARS_USER']
password = System.env['CLOJARS_PASSWORD']
}
}
}
}