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 1
1
2
2
plugins {
3
+ maven
3
4
kotlin(" jvm" )
4
5
}
5
6
6
7
jvmTarget = " 1.6"
7
8
9
+ val publishedRuntime by configurations.creating {
10
+ the<MavenPluginConvention >()
11
+ .conf2ScopeMappings
12
+ .addMapping(0 , this , Conf2ScopeMappingContainer .RUNTIME )
13
+ }
14
+
8
15
dependencies {
9
16
compile(project(" :kotlin-script-runtime" ))
10
17
compile(kotlinStdlib())
@@ -15,6 +22,8 @@ dependencies {
15
22
compileOnly(project(" :compiler:cli-common" ))
16
23
compileOnly(project(" :kotlin-reflect-api" ))
17
24
compileOnly(intellijCoreDep())
25
+ publishedRuntime(project(" :kotlin-compiler" ))
26
+ publishedRuntime(project(" :kotlin-reflect" ))
18
27
}
19
28
20
29
sourceSets {
Original file line number Diff line number Diff line change 1
1
2
2
plugins {
3
+ maven
3
4
kotlin(" jvm" )
4
5
}
5
6
6
7
jvmTarget = " 1.6"
7
8
9
+ val publishedRuntime by configurations.creating {
10
+ the<MavenPluginConvention >()
11
+ .conf2ScopeMappings
12
+ .addMapping(0 , this , Conf2ScopeMappingContainer .RUNTIME )
13
+ }
14
+
8
15
dependencies {
9
16
compile(project(" :kotlin-script-runtime" ))
10
17
compile(kotlinStdlib())
@@ -14,6 +21,10 @@ dependencies {
14
21
compileOnly(project(" :compiler:cli" ))
15
22
compileOnly(project(" :kotlin-reflect-api" ))
16
23
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" ))
17
28
}
18
29
19
30
sourceSets {
You can’t perform that action at this time.
0 commit comments