-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
50 lines (43 loc) · 963 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
49
50
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
}
}
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
group 'io.binakot'
version '1.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
compileJava.options.encoding = 'UTF-8'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
jar {
manifest {
attributes(
'Main-Class': 'io.binakot.demo.DemoApplication'
)
}
}
shadowJar {
baseName = project.name + '-all'
classifier = ''
version = project.version
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.5'
testCompile group: 'junit', name: 'junit', version: '4.12'
}