-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
118 lines (89 loc) · 2.35 KB
/
build.gradle
File metadata and controls
118 lines (89 loc) · 2.35 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
plugins {
id 'com.github.hierynomus.license' version '0.13.1'
id 'com.github.johnrengelman.shadow' version '1.2.4'
}
apply from: 'gradle/versions.gradle'
group 'com.github.projectsandstone'
version '2.0-SNAPSHOT'
// IDE
apply plugin: 'idea'
apply plugin: 'eclipse'
// Programming Language
apply plugin: 'java'
// License
apply plugin: 'license'
// Shade
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven {
name = 'sponge'
url = 'http://repo.spongepowered.org/maven'
}
}
//noinspection GroovyAssignabilityCheck
dependencies {
// Sponge API
compile "org.spongepowered:spongeapi:$spongeapi_version"
// JwIUtils
compile "com.github.JonathanxD:JwIUtils:$jwiutils_version"
// Annotations
compile "org.jetbrains:annotations:$annotations_version"
// JUnit
testCompile group: 'junit', name:'junit', version: '4.12'
}
//noinspection GroovyAssignabilityCheck
test {
useJUnit()
}
// Tasks
//noinspection GroovyAssignabilityCheck
jar {
from "$rootProject.rootDir/LICENSE"
manifest {
attributes 'Implementation-Title': baseName,
'Implementation-Version': version
}
}
shadowJar {
classifier = 'shaded'
dependencies {
}
relocate 'com.github.jonathanxd.jwiutils', 'com.github.projectsandstone.spongeremotechests.jwiutils' // Relocate JwIUtils dependency.
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: classes) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
archives shadowJar
}
license {
header rootProject.file("LICENSE_HEADER")
ext.name = project.name
ext.description = project.description
ext.organization = project.organization
ext.url = project.url
ext.year = Calendar.getInstance().get(Calendar.YEAR)
exclude "**/*.info"
exclude "**/*.md"
exclude "res/**"
exclude "src/main/resources/**"
exclude "src/test/resources/**"
header rootProject.file('LICENSE_HEADER')
sourceSets = project.sourceSets
ignoreFailures false
strictCheck true
mapping {
java = 'JAVADOC_STYLE'
kt = 'JAVADOC_STYLE'
}
}