aboutsummaryrefslogtreecommitdiff
path: root/runners/fatjar
diff options
context:
space:
mode:
authorSimon Ogorodnik <sem-oro@yandex.ru>2016-12-06 16:24:43 +0300
committerGitHub <noreply@github.com>2016-12-06 16:24:43 +0300
commit2d03ad01f650bc997dce076abaab0a61c2301a96 (patch)
tree957dbe5280cf1114cfecfca35d18b264be195255 /runners/fatjar
parent5d030c6303270d8955b71c6738afd9c80d73662f (diff)
parent546e8edfd95c16665319bc371c6ccf63706ad1e4 (diff)
downloaddokka-2d03ad01f650bc997dce076abaab0a61c2301a96.tar.gz
dokka-2d03ad01f650bc997dce076abaab0a61c2301a96.tar.bz2
dokka-2d03ad01f650bc997dce076abaab0a61c2301a96.zip
Merge pull request #123 from Kotlin/isolated-classloader
Now dokka-fatjar complete isolated from poisonous Gradle environment
Diffstat (limited to 'runners/fatjar')
-rw-r--r--runners/fatjar/build.gradle23
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)