-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
79 lines (65 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//Plugins
plugins {
id "net.ltgt.apt" version "0.10"
id "com.github.johnrengelman.shadow" version "2.0.1"
}
apply plugin : 'java'
apply plugin : 'maven'
apply plugin : 'idea'
//End Plugins
//Program Specific Variables
def programVersion = "0.0.8"
def programGroup = "com.gmail.socraticphoenix"
//End Variables
//Gradle Variables
group = "$programGroup"
version = "$programVersion"
sourceCompatibility = 1.8
//End Gradle Variables
configurations {
library
compile.extendsFrom library
runtime.extendsFrom library
}
//Repositories and Dependencies
repositories {
mavenCentral()
maven {
name "jitpack.io"
url "https://jitpack.io"
}
}
dependencies {
library "org.json:json:20171018"
library "com.github.SocraticPhoenix:TioJ:master-SNAPSHOT"
compile "org.sobotics:chatexchange:2.0.0"
}
//End Repositories and Dependencies
jar {
manifest {
attributes("Main-Class": "com.gmail.socraticphoenix.tiobot.TioBot")
}
}
//Tasks
task sourceJar(type: Jar) {
classifier = "source"
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc){
classifier = "javadoc"
from javadoc.destinationDir
}
javadoc {
destinationDir = file("docs")
}
shadowJar {
classifier = "shadow"
manifest {
attributes("Main-Class": "com.gmail.socraticphoenix.tiobot.TioBot")
}}
//End Tasks
//Configurations
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
//End configurations