forked from me4502/SlotMachines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (37 loc) · 877 Bytes
/
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
plugins {
id "java"
id "maven"
id "eclipse"
id "idea"
id "signing"
id "com.github.hierynomus.license" version "0.12.1"
id 'org.spongepowered.plugin' version '0.8.1'
}
group = pluginGroup
version = pluginVersion
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url = "http://repo.spongepowered.org/maven/" }
}
dependencies {
compile 'org.spongepowered:spongeapi:7.1.0-SNAPSHOT'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
signing {
sign configurations.archives
}
license {
ext {
year = Calendar.getInstance().get(Calendar.YEAR)
}
header = file('HEADER.txt')
include '**/*.java'
ignoreFailures = false
strictCheck = true
mapping {
java = 'SLASHSTAR_STYLE'
}
}