-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (36 loc) · 889 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
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
group 'xyz.kvantum'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
jar {
manifest {
attributes 'Implementation-Title': 'KvantumBlog',
'Implementation-Version': version,
'Main-Class': 'xyz.kvantum.blog.KvantumBlog'
}
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
mavenCentral();
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.16.18'
compile 'xyz.kvantum.Kvantum:Implementation:95d9ec9'
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}