-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
130 lines (102 loc) · 2.92 KB
/
build.gradle
File metadata and controls
130 lines (102 loc) · 2.92 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
118
119
120
121
122
123
124
125
126
127
128
129
130
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
}
}
plugins {
id 'com.github.hierynomus.license' version '0.15.0'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}
group 'com.github.koresframework'
version '1.9.1'
// Programming Language
apply plugin: 'kotlin'
apply plugin: 'org.jetbrains.dokka'
apply plugin: 'java'
// License
apply plugin: 'license'
// Shade
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
// Utilities
implementation 'com.github.koresframework:Kores:4.0.1.base'
implementation 'com.github.koresframework.Kores-SourceWriter:Kores-SourceWriter:4.0.1.source'
implementation 'com.github.koresframework.Kores-BytecodeWriter:Kores-BytecodeWriter:4.0.1.bytecode.1'
implementation 'com.github.koresframework:Kores-Extra:1.4.3'
implementation 'com.github.JonathanxD:JwIUtils:4.17.2'
implementation "io.github.lukehutch:fast-classpath-scanner:3.1.15"
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
// Tasks
jar {
from "$rootProject.rootDir/LICENSE"
manifest {
attributes 'Implementation-Title': baseName,
'Implementation-Version': version
}
}
shadowJar {
classifier = 'shaded'
}
tasks.dokkaHtml.configure {
outputDirectory.set(javadoc.destinationDir)
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: dokkaHtml) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
archives shadowJar
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xuse-experimental=kotlin.Experimental"]
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xuse-experimental=kotlin.Experimental"]
}
test {
useJUnit()
}
license {
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 = 'SLASHSTAR_STYLE'
kt = 'SLASHSTAR_STYLE'
}
}
tasks.dokkaHtml.configure {
enabled = false
}