-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (49 loc) · 1.24 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8"
}
}
apply plugin: "idea"
apply plugin: "java"
apply plugin: "project-report"
apply plugin: "de.fuerstenau.buildconfig"
sourceCompatibility = 1.8
version = "1.0"
ext {
gsonVersion = "2.8.1"
webbVersion = "1.3.1"
slf4jSimpleVersion = "1.7.25"
annotationVersion = "15.0"
orgJsonVersion = "20180130"
}
repositories {
maven {
url "https://dl.bintray.com/frozenironsoftware/Maven"
}
jcenter()
}
dependencies {
compile "com.google.code.gson:gson:$gsonVersion"
compile "com.goebl:david-webb:$webbVersion"
compile "org.slf4j:slf4j-simple:$slf4jSimpleVersion"
compile "org.jetbrains:annotations:$annotationVersion"
compile "org.json:json:$orgJsonVersion"
}
buildConfig {
appName = project.name
version = project.version
clsName = "Constants"
packageName = "com.frozenironsoftware.flynnstatus.data"
charset = "UTF-8"
}
jar {
manifest {
attributes "Main-Class": "com.frozenironsoftware.flynnstatus.FlynnStatus"
}
from {configurations.compile.collect {zipTree(it)}}
}