blob: 7f2b8557f35ccefe50650e7145cf62d68864c36a (
plain)
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
|
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
}
}
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.2'
}
group 'de.romjaki'
version '1.0-SNAPSHOT'
mainClassName = "de.romjaki.tokenstealer.Main"
manifest {
jar {
attributes 'Main-Class': mainClassName
}
}
shadowJar {
classifier = 'shadow'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '+'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
|