aboutsummaryrefslogtreecommitdiff
path: root/spark-forge/build.gradle
blob: a8c31cb9f27a24042c7fb95795629224d3e29021 (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
buildscript {
    repositories {
        maven { url = "http://files.minecraftforge.net/maven" }
    }
    dependencies {
        classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
    }
}

plugins {
    id 'com.github.johnrengelman.shadow' version '4.0.1'
}

apply plugin: 'net.minecraftforge.gradle.forge'

minecraft {
    version = '1.12.2-14.23.4.2705'
    runDir = 'run'
    mappings = 'snapshot_20171003'

    replaceIn 'me/lucko/spark/forge/SparkForgeMod.java'
    replace '@version@', project.pluginVersion
}

processResources {
    from(sourceSets.main.resources.srcDirs) {
        expand (
                'pluginVersion': project.pluginVersion,
                'pluginDescription': project.pluginDescription
        )
        include 'mcmod.info'
    }
}

dependencies {
    compile project(':spark-common')

    compile 'net.kyori:text:1.11-1.6.4', {
        exclude(module: 'checker-qual')
        exclude(module: 'guava')
        exclude(module: 'gson')
    }
}

shadowJar {
    archiveName = 'spark-forge.jar'

    relocate 'okio', 'me.lucko.spark.lib.okio'
    relocate 'okhttp3', 'me.lucko.spark.lib.okhttp3'
    relocate 'net.kyori.text', 'me.lucko.spark.lib.text'
}

artifacts {
    archives shadowJar
    shadow shadowJar
}

reobf {
    shadowJar {
        mappingType = 'SEARGE'
    }
}