-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
97 lines (76 loc) · 2.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
group 'com.company.Main'
version '1.0'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: "clojure"
sourceSets {
main {
clojure {
srcDirs = ["src/main/java/", "com/company/clj"]
}
}
}
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url "https://clojars.org/repo" }
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
classpath 'clojuresque:clojuresque:1.+'
classpath "org.clojure:clojure:1.+"
}
}
jar {
manifest {
attributes(
'Main-Class': 'com.company.Main'
)
}
}
repositories {
mavenCentral()
jcenter()
clojarsRepo()
}
sourceCompatibility = 1.8
clojure.warnOnReflection = true
clojure.aotCompile = true
shadowJar {
baseName = 'shadow'
classifier = null
version = null
}
dependencies {
compile group: 'org.clojure', name: 'clojure', version: '1.+'
compile 'org.controlsfx:controlsfx:8.+'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.+'
compile 'com.google.api-client:google-api-client:1.+'
compile 'com.github.jengelman.gradle.plugins:shadow:1.+'
testCompile group: 'junit', name: 'junit', version: '4.+'
compile group: 'com.typesafe.akka', name: 'akka-actor_2.11', version: '2.+'
compile 'org.jsoup:jsoup:1.+'
compile group: 'com.h2database', name: 'h2', version: '1.+'
compile 'clojuresque:clojuresque:1.+'
compile group: 'com.atlassian.commonmark', name: 'commonmark', version: '0.6.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
//compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.8.11.2'
//compile files('/home/fold/Downloads/RedshiftJDBC41-1.1.10.1010.jar')
//testCompile group: 'junit', name: 'junit', version: '4.+'
//testCompile 'org.mockito:mockito-core:2.+'
//compile 'com.amazonaws:aws-java-sdk:1.+'
//compile 'com.google.guava:guava:+'
//compile 'org.slf4j:slf4j-api:+'
//compile 'org.slf4j:slf4j-log4j12:+'
//compile 'joda-time:joda-time:2.+'
//compile 'org.json:json:+'
//compile 'commons-cli:commons-cli:1.3.1'
//compile 'com.google.protobuf:protobuf-java:2.6.+'
//compile 'org.java-websocket:Java-WebSocket:1.3.0'
//compile 'com.google.oauth-client:google-oauth-client:1.21.0'
//compile 'com.ullink.slack:simpleslackapi:0.5.0'
//compile 'com.ning:async-http-client:1.9.32'
// compile 'org.scala-lang:scala-library:2.12.0-M3'
}