blob: 8e6f11df48ba9367c66fa446ea43f2682345f6f1 (
plain)
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
|
apply plugin: 'java'
sourceCompatibility = 1.6
apply plugin: 'com.github.johnrengelman.shadow'
configurations {
provided
}
tasks.withType(AbstractCompile) {
classpath += configurations.provided
classpath += configurations.shadow
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: kotlin_version
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_version
compile project(":integration")
provided gradleApi()
provided localGroovy()
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
}
processResources {
eachFile {
if (it.name == "org.jetbrains.dokka.properties") {
it.filter { line ->
line.replace("<version>", dokka_version)
}
}
}
}
shadowJar {
baseName = 'dokka-gradle-plugin'
classifier = ''
}
apply plugin: 'maven-publish'
publishing {
publications {
dokkaGradlePlugin(MavenPublication) {
from components.shadow
artifactId = 'dokka-gradle-plugin'
artifact sourceJar {
classifier "sources"
}
}
}
}
bintrayPublication(project, ['dokkaGradlePlugin'])
|