diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-02 23:46:16 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-02 23:46:16 +0300 |
commit | 13bda7371cc60beaa4cc8302239efd21695b9e1f (patch) | |
tree | 1673a8ff05e3398a9826af09ece88f05fd4c56ae /runners/fatjar/build.gradle | |
parent | 039bb97123fd8a74b9954598d7a102e235fd108d (diff) | |
download | dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.tar.gz dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.tar.bz2 dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.zip |
Now dokka-fatjar complete isolated from poisonous Gradle environment
Diffstat (limited to 'runners/fatjar/build.gradle')
-rw-r--r-- | runners/fatjar/build.gradle | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/runners/fatjar/build.gradle b/runners/fatjar/build.gradle index d888a1ac..a9f0c721 100644 --- a/runners/fatjar/build.gradle +++ b/runners/fatjar/build.gradle @@ -22,29 +22,6 @@ shadowJar { exclude provided } - relocate('com.', 'dokkacom.') { - exclude 'com.sun.**' - } - - relocate('org.', 'dokkaorg.') { - exclude 'org.jetbrains.dokka.**' - exclude 'org.xml.**' - exclude 'org.w3c.**' - exclude 'org.jaxen.**' - exclude 'org.apache.xerces.**' - exclude 'org.apache.xml.**' - exclude 'org.fusesource.jansi.**' - exclude 'org.apache.tools.ant.**' - } - - - relocate('kotlin.', 'dokkakotlin.') { - exclude '**.*kotlin_builtins' //For kotlin_builtins, still not sure that we should relocate kotlin stdlib - exclude 'kotlin.reflect' /* WAT? Ok, ok. Relocate works as Ctrl + Shift + R for ALL class files, so, - if you have string "kotlin.reflect", it will be rewritten to not relevant "dokkakotlin.reflect" and you will got - builtins crash in runtime, cause could not find dokkakotlin/reflect/reflect.kotlin_builtins */ - } - transform(ServiceFileTransformer) transform(PluginXmlTransformer) |