-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (44 loc) · 1.42 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
buildscript {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
}
dependencies {
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0'
}
}
apply plugin: 'java'
apply plugin: 'com.github.hierynomus.license'
group 'org.incendo'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
license {
mapping {
java = 'DOUBLESLASH_STYLE'
}
}
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
dependencies {
// Mostly used for its awesome map implementations
compile group: 'com.google.guava', name: 'guava', version: '23.2-jre'
// Lambda-factory
compile 'com.github.Hervian:lambda-factory:91bc62f8c2'
// Used to simplify code creation
compileOnly 'org.projectlombok:lombok:1.18.4'
testCompileOnly 'org.projectlombok:lombok:1.18.4'
compile group: 'org.jetbrains', name: 'annotations', version: '16.0.3'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testCompile(
'org.junit.jupiter:junit-jupiter-engine:5.3.2',
'org.junit.vintage:junit-vintage-engine:5.3.2',
'org.junit.platform:junit-platform-launcher:1.3.2',
'org.junit.platform:junit-platform-runner:1.3.2'
)
}
build.dependsOn(licenseFormatMain)