-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
39 lines (32 loc) · 902 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
buildscript {
dependencies {
classpath("gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.13.1")
}
}
plugins {
id 'java'
}
apply plugin: "com.github.hierynomus.license"
group 'io.github.opencubicchunks'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.mockito:mockito-core:2.21.0'
// https://mvnrepository.com/artifact/com.pholser/junit-quickcheck-generators
testCompile group: 'com.pholser', name: 'junit-quickcheck-generators', version: '0.8.2'
}
license {
ext.project = "ReLight"
exclude("**/*.info")
exclude("**/package-info.java")
exclude("**/*.json")
exclude("**/*.xml")
header = file("HEADER.txt")
ignoreFailures = false
strictCheck = true
mapping(java: "SLASHSTAR_STYLE")
}