aboutsummaryrefslogtreecommitdiff
path: root/runners/fatjar
diff options
context:
space:
mode:
Diffstat (limited to 'runners/fatjar')
-rw-r--r--runners/fatjar/build.gradle6
1 files changed, 5 insertions, 1 deletions
diff --git a/runners/fatjar/build.gradle b/runners/fatjar/build.gradle
index e3bea7ed..4ce0416c 100644
--- a/runners/fatjar/build.gradle
+++ b/runners/fatjar/build.gradle
@@ -1,7 +1,7 @@
import com.github.jengelman.gradle.plugins.shadow.transformers.ServiceFileTransformer
import org.jetbrains.PluginXmlTransformer
-apply plugin: 'kotlin'
+apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
dependencies {
@@ -30,6 +30,10 @@ shadowJar {
exclude 'fileTemplates/**'
exclude 'inspectionDescriptions/**'
exclude 'intentionDescriptions/**'
+
+ exclude 'src/**'
+
+ relocate('kotlin.reflect.full', 'kotlin.reflect')
}
apply plugin: 'maven-publish'