This repository was archived by the owner on Oct 3, 2021. It is now read-only.
File tree 4 files changed +51
-1
lines changed
4 files changed +51
-1
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ tasks {
73
73
testLogging.showStandardStreams = true
74
74
}
75
75
packageCompose {
76
- installBundle(" org.jetbrains.kotlin:kotlin-osgi-bundle:1.4.0" )
76
+ installBundleProject(" :kotlin:stdlib" )
77
+ installBundleProject(" :kotlin:reflect" )
77
78
installBundleProject(" :kotlin:coroutines-core" )
78
79
installBundleProject(" :kotlin:coroutines-core-jvm" )
79
80
installBundleProject(" :kotlin:compiler-embeddable" )
Original file line number Diff line number Diff line change
1
+ import com.cognifide.gradle.aem.bundle.tasks.bundle
2
+
3
+ plugins {
4
+ id(" com.cognifide.aem.bundle" )
5
+ }
6
+
7
+ dependencies {
8
+ compileOnly(" org.jetbrains.kotlin:kotlin-reflect:1.4.0" )
9
+ }
10
+
11
+ tasks {
12
+ jar {
13
+ bundle {
14
+ attribute(" Include-Resource" , " @kotlin-reflect-1.4.0.jar" )
15
+ exportPackage(" kotlin.reflect.*" )
16
+ bndTool {
17
+ bnd(mapOf (
18
+ " -fixupmessages.classes" to " \" Classes found in the wrong directory*\" ;is:=warning"
19
+ ))
20
+ }
21
+ }
22
+ }
23
+ }
Original file line number Diff line number Diff line change
1
+ import com.cognifide.gradle.aem.bundle.tasks.bundle
2
+
3
+ plugins {
4
+ id(" com.cognifide.aem.bundle" )
5
+ }
6
+
7
+ dependencies {
8
+ compileOnly(" org.jetbrains.kotlin:kotlin-stdlib:1.4.0" )
9
+ }
10
+
11
+ tasks {
12
+ jar {
13
+ bundle {
14
+ attribute(" Include-Resource" , " @kotlin-stdlib-1.4.0.jar" )
15
+ exportPackage(" kotlin.*" )
16
+ excludePackage(" kotlin.internal.*" )
17
+ bndTool {
18
+ bnd(mapOf (
19
+ " -fixupmessages.classes" to " \" Classes found in the wrong directory*\" ;is:=warning"
20
+ ))
21
+ }
22
+ }
23
+ }
24
+ }
Original file line number Diff line number Diff line change 1
1
rootProject.name = " slinkt"
2
2
3
+ include(" :kotlin:stdlib" )
4
+ include(" :kotlin:reflect" )
3
5
include(" :kotlin:compiler-embeddable" )
4
6
include(" :kotlin:coroutines-core" )
5
7
include(" :kotlin:coroutines-core-jvm" )
You can’t perform that action at this time.
0 commit comments