File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 11
22plugins {
3+ maven
34 kotlin(" jvm" )
45}
56
67jvmTarget = " 1.6"
78
9+ val publishedRuntime by configurations.creating {
10+ the<MavenPluginConvention >()
11+ .conf2ScopeMappings
12+ .addMapping(0 , this , Conf2ScopeMappingContainer .RUNTIME )
13+ }
14+
815dependencies {
916 compile(project(" :kotlin-script-runtime" ))
1017 compile(kotlinStdlib())
@@ -15,6 +22,8 @@ dependencies {
1522 compileOnly(project(" :compiler:cli-common" ))
1623 compileOnly(project(" :kotlin-reflect-api" ))
1724 compileOnly(intellijCoreDep())
25+ publishedRuntime(project(" :kotlin-compiler" ))
26+ publishedRuntime(project(" :kotlin-reflect" ))
1827}
1928
2029sourceSets {
Original file line number Diff line number Diff line change 11
22plugins {
3+ maven
34 kotlin(" jvm" )
45}
56
67jvmTarget = " 1.6"
78
9+ val publishedRuntime by configurations.creating {
10+ the<MavenPluginConvention >()
11+ .conf2ScopeMappings
12+ .addMapping(0 , this , Conf2ScopeMappingContainer .RUNTIME )
13+ }
14+
815dependencies {
916 compile(project(" :kotlin-script-runtime" ))
1017 compile(kotlinStdlib())
@@ -14,6 +21,10 @@ dependencies {
1421 compileOnly(project(" :compiler:cli" ))
1522 compileOnly(project(" :kotlin-reflect-api" ))
1623 compileOnly(intellijCoreDep()) { includeJars(" intellij-core" ) }
24+ publishedRuntime(project(" :kotlin-compiler" ))
25+ publishedRuntime(project(" :kotlin-scripting-compiler" ))
26+ publishedRuntime(project(" :kotlin-reflect" ))
27+ publishedRuntime(commonDep(" org.jetbrains.intellij.deps" , " trove4j" ))
1728}
1829
1930sourceSets {
You can’t perform that action at this time.
0 commit comments