mirror of
https://bitbucket.org/projectswg/lightspeed.git
synced 2026-01-16 23:04:40 -05:00
23 lines
306 B
Groovy
23 lines
306 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'idea'
|
|
}
|
|
|
|
version '1.0.0'
|
|
|
|
sourceCompatibility = 10
|
|
targetCompatibility = 10
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':PSWGCommon')
|
|
compile group: "me.joshlarson", name: "fast-json", version: "2.2.3"
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = "4.4"
|
|
}
|