summaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 12c2d9729885238183e95ef30ee50bc81bf78d79 (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
@file:Suppress("RemoveRedundantBackticks", "IMPLICIT_CAST_TO_ANY", "UNUSED_VARIABLE")

import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.io.PrintWriter
import java.net.URL

val stdout = PrintWriter("gradle-output.txt")

group = "io.dico"
version = "0.2"

plugins {
    java
    kotlin("jvm") version "1.3.0-rc-57"
    id("com.github.johnrengelman.plugin-shadow") version "2.0.3"
}



allprojects {
    apply<JavaPlugin>()
    apply(plugin = "idea")

    repositories {
        mavenCentral()
        maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots")
        maven("https://hub.spigotmc.org/nexus/content/repositories/sonatype-nexus-snapshots")
        maven("https://dl.bintray.com/kotlin/exposed")
        maven("https://dl.bintray.com/kotlin/kotlin-eap")
        maven("https://dl.bintray.com/kotlin/kotlinx/")
    }

    dependencies {
        val spigotVersion = "1.13.1-R0.1-SNAPSHOT"
        c.provided("org.bukkit:bukkit:$spigotVersion") { isTransitive = false }
        c.provided("org.spigotmc:spigot-api:$spigotVersion") { isTransitive = false }

        c.provided("net.sf.trove4j:trove4j:3.0.3")
        testCompile("junit:junit:4.12")
    }

    afterEvaluate {
        tasks.filter { it is Jar }.forEach { it.group = "artifacts" }
    }
}

project(":dicore3:dicore3-core") {
    dependencies {
        compile("org.jetbrains:annotations:16.0.3")
    }
}

project(":dicore3:dicore3-command") {
    apply<KotlinPlatformJvmPlugin>()

    dependencies {
        c.kotlinStd(kotlin("stdlib-jdk8"))
        c.kotlinStd(kotlin("reflect"))
        c.kotlinStd(kotlinx("coroutines-core:0.26.1-eap13"))

        compile(project(":dicore3:dicore3-core"))
        compile("com.thoughtworks.paranamer:paranamer:2.8")
        c.provided("com.google.guava:guava:25.1-jre")
    }
}

dependencies {
    compile(project(":dicore3:dicore3-core"))
    compile(project(":dicore3:dicore3-command"))

    c.kotlinStd(kotlin("stdlib-jdk8"))
    c.kotlinStd(kotlin("reflect"))
    c.kotlinStd(kotlinx("coroutines-core:0.26.1-eap13"))
    c.kotlinStd("org.jetbrains.kotlinx:atomicfu-common:0.11.7-eap13")

    // not on sk89q maven repo yet
    compileClasspath(files("$rootDir/debug/plugins/worldedit-bukkit-7.0.0-beta-01.jar"))
    compileClasspath(files("$rootDir/debug/lib/spigot-1.13.1.jar"))

    compile("org.jetbrains.exposed:exposed:0.10.5") { isTransitive = false }
    compile("joda-time:joda-time:2.10")
    compile("com.zaxxer:HikariCP:3.2.0")
    compile("ch.qos.logback:logback-classic:1.2.3") { isTransitive = false }
    compile("ch.qos.logback:logback-core:1.2.3") { isTransitive = false }

    val jacksonVersion = "2.9.6"
    compile("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
    compile("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
    compile("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion")
    compile("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion") { isTransitive = false }
}

tasks {
    removeIf { it is ShadowJar }

    tasks.withType<KotlinCompile> {
        kotlinOptions {
            javaParameters = true
            suppressWarnings = true
            jvmTarget = "1.8"
            freeCompilerArgs = listOf("-XXLanguage:+InlineClasses", "-Xuse-experimental=kotlin.Experimental")
        }
    }

    val serverDir = "$rootDir/debug"
    val jar by getting(Jar::class)

    val kotlinStdlibJar by creating(Jar::class) {
        destinationDir = file("$serverDir/lib")
        archiveName = "kotlin-stdlib.jar"
        fromFiles(c.kotlinStd)
    }

    val releaseJar by creating(ShadowJar::class) {
        destinationDir = file("$serverDir/plugins")
        baseName = "parcels2-release"

        with(jar)
        fromFiles(c.compile)

        /*
        Shadow Jar is retarded so it also relocates packages not included in the releaseJar (such as the bukkit api)

        relocate("", "io.dico.parcels2.lib.") {
            exclude("*yml")
            exclude("*xml")
            exclude("META-INF/*")
            exclude("io/dico/*")
        }
        */*/*/

        // jackson-dataformat-yaml requires an older version of snakeyaml (1.19 or earlier)
        // snakeyaml made a breaking change in 1.20 and didn't really warn anyone afaik
        // it was like me changing the command library because I know I'm the only one using it
        // spigot ships a later version in the root, so we must relocate ours
        relocate("org.yaml.snakeyaml.", "io.dico.parcels2.lib.org.yaml.snakeyaml.")

        manifest.attributes["Class-Path"] = "../lib/kotlin-stdlib.jar"
        dependsOn(kotlinStdlibJar)
    }

    val createDebugServer by creating {
        // todo

        val jarUrl = URL("https://yivesmirror.com/files/spigot/spigot-latest.jar")
        val serverJarFile = file("$serverDir/lib/spigot.jar")


        doFirst {

        }
    }
}

stdout.flush()
stdout.close()

inline fun <reified T : Plugin<out Project>> Project.apply() =
    (this as PluginAware).apply<T>()

fun kotlinx(module: String, version: String? = null): Any =
    "org.jetbrains.kotlinx:kotlinx-$module${version?.let { ":$version" } ?: ""}"

val Project.c get() = configurations

val ConfigurationContainer.`provided`: Configuration
    get() = findByName("provided") ?: create("provided").let { compileClasspath.extendsFrom(it) }

val ConfigurationContainer.`kotlinStd`: Configuration
    get() = findByName("kotlinStd") ?: create("kotlinStd").let { compileClasspath.extendsFrom(it) }

fun Jar.fromFiles(files: Iterable<File>) =
    afterEvaluate { from(*files.map { if (it.isDirectory) it else zipTree(it) }.toTypedArray()) }