-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (52 loc) · 1.49 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
/*
* Copyright (C) 2015 jomp16
*
* This file is part of Source RCON - Java.
*
* Source RCON - Java is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Source RCON - Java is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Source RCON - Java. If not, see <http://www.gnu.org/licenses/>.
*/
plugins {
id 'com.github.ben-manes.versions' version '0.11.3'
id 'java'
id 'idea'
}
group 'tk.jomp16.rcon'
version '2.0.3'
repositories {
jcenter()
}
configurations {
provided
}
sourceSets {
main {
compileClasspath += configurations.provided
}
}
idea {
module {
scopes.PROVIDED.plus += [configurations.provided]
}
}
dependencies {
testCompile 'junit:junit:4.12'
provided 'org.projectlombok:lombok:1.16.6'
compile 'io.netty:netty-all:4.0.33.Final'
compile 'io.netty:netty-transport-native-epoll:4.0.33.Final'
compile 'org.apache.logging.log4j:log4j-core:2.4.1'
compile 'org.apache.logging.log4j:log4j-api:2.4.1'
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
}