aboutsummaryrefslogtreecommitdiff
path: root/runners/gradle-plugin/build.gradle
blob: 4742dda5dbeb36eb1b056ad7f7e1c86b9c21bf93 (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
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
import com.gradle.publish.DependenciesBuilder

apply plugin: 'java'
apply plugin: 'kotlin'


apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: "com.gradle.plugin-publish"

sourceCompatibility = 1.8

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
    kotlinOptions {
        freeCompilerArgs += "-Xjsr305=strict"
        languageVersion = "1.2"
        apiVersion = "1.1"
        jvmTarget = "1.8"
    }
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'

    shadow group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_for_gradle_runtime_version
    shadow group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlin_for_gradle_runtime_version

    compile project(":integration")

    compileOnly gradleApi()
    compileOnly localGroovy()
}

task sourceJar(type: Jar) {
    from sourceSets.main.allSource
}

processResources {
    inputs.property("dokka_version", dokka_version)
    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) { publication ->

            artifactId = 'dokka-gradle-plugin'

            artifact sourceJar {
                classifier "sources"
            }

            project.shadow.component(publication)
            publication.pom { pom ->
                // Add dokka-fatjar as a runtime dependency.
                // This is a workaround until the Shadow jar can put project dependencies into the .pom: https://github.com/johnrengelman/shadow/commit/da82b37522b349aff414f571d2037682acd84f27
                pom.withXml { xml ->
                    def node = xml.asNode()
                    def deps = null
                    node.children().each { child ->
                        if (child.name().toString() == "dependencies") {
                            deps = child
                        }
                    }
                    if (deps == null) {
                        deps = node.appendNode("dependencies")
                    }
                    def dep = deps.appendNode("dependency")
                    dep.appendNode("groupId", "org.jetbrains.dokka")
                    dep.appendNode("artifactId", "dokka-fatjar")
                    dep.appendNode("version", dokka_version)
                    dep.appendNode("scope", "runtime")
                }
            }
        }
    }
}

bintrayPublication(project, ['dokkaGradlePlugin'])

configurations.archives.artifacts.clear()
artifacts {
    archives shadowJar
}

pluginBundle {
    website = 'http://www.kotlinlang.org/'
    vcsUrl = 'https://github.com/kotlin/dokka.git'
    description = 'Dokka, the Kotlin documentation tool'
    tags = ['dokka', 'kotlin', 'kdoc']

    plugins {
        dokkaGradlePlugin {
            id = 'org.jetbrains.dokka'
            displayName = 'Dokka plugin'
        }
    }

    withDependencies { List<Dependency> list ->
        list.clear()
        def builder = new DependenciesBuilder()
        builder.addUniqueScopedDependencies(list, configurations.shadow, "compile")
    }

    mavenCoordinates {
        groupId = "org.jetbrains.dokka"
        artifactId = "dokka-gradle-plugin"
    }
}