-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (37 loc) · 839 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
44
45
46
47
48
buildscript {
repositories { jcenter() }
dependencies { classpath "com.github.jengelman.gradle.plugins:shadow:2.0.4" }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = "de.dumischbaenger.OSKerberos"
applicationDefaultJvmArgs = []
apply plugin: 'com.github.johnrengelman.shadow'
repositories {
jcenter()
}
dependencies {
compile "org.slf4j:slf4j-simple:1.7.25"
compile 'com.microsoft.sqlserver:mssql-jdbc:7.0.0.jre8'
}
task runJavaKerberos {
doFirst{
mainClassName = "de.dumischbaenger.JavaKerberos"
run.args=[
//'-dbhost', 'celsius',
]
}
group 'bet'
finalizedBy run
}
task runOsKerberos {
doFirst{
mainClassName = "de.dumischbaenger.OSKerberos"
run.args=[
//'-dbhost', 'celsius',
]
}
group 'bet'
finalizedBy run
}