mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-07 11:30:41 +01:00
27 lines
512 B
Groovy
27 lines
512 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
group = 'com.sekwah.advancedportals'
|
|
version = '1.0.0'
|
|
|
|
description = ""
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
maven { url "http://repo.maven.apache.org/maven2" }
|
|
}
|
|
dependencies {
|
|
compile group: 'com.google.code.gson', name: 'gson', version:'2.8.2'
|
|
compile group: 'com.google.inject', name: 'guice', version:'4.0'
|
|
}
|