-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
120 lines (93 loc) · 2.43 KB
/
Copy pathbuild.gradle
File metadata and controls
120 lines (93 loc) · 2.43 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
buildscript {
ext.kotlin_version = '1.2.30'
ext.dokka_version = '0.9.16'
repositories {
mavenCentral()
jcenter()
}
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.13.1'
id 'com.github.johnrengelman.shadow' version '1.2.4'
}
group 'com.github.jonathanxd'
version '1.4.3'
allprojects {
// IDE
apply plugin: 'idea'
apply plugin: 'eclipse'
// 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
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
// Utilities
compile 'com.github.JonathanxD.Kores:Kores:4.0.0.45-beta'
testCompile 'com.github.JonathanxD.Kores-BytecodeWriter:Kores-BytecodeWriter:4.0.0.36-beta-bytecode'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
// Tasks
jar {
from "$rootProject.rootDir/LICENSE"
manifest {
attributes 'Implementation-Title': baseName,
'Implementation-Version': version
}
}
shadowJar {
classifier = 'shaded'
}
dokka {
outputFormat = 'markdown'
outputDirectory = javadoc.destinationDir
includes = ['src/main/Module.md']
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: dokka) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
archives shadowJar
}
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 = 'JAVADOC_STYLE'
kt = 'JAVADOC_STYLE'
}
}