-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Gradle, JS] Use JAR archive task type for js ir
(cherry picked from commit 7794998) ^KT-57285 fixed
- Loading branch information
1 parent
a7e5906
commit 82904fe
Showing
3 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...lugin-integration-tests/src/test/resources/testProject/mpp-empty-sources/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
plugins { | ||
kotlin("multiplatform") version "<pluginMarkerVersion>" | ||
`maven-publish` | ||
} | ||
|
||
group = "org.example" | ||
version = "1.0-SNAPSHOT" | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
|
||
kotlin { | ||
jvm { | ||
jvmToolchain(8) | ||
withJava() | ||
} | ||
js(IR) { | ||
binaries.executable() | ||
browser { | ||
} | ||
} | ||
} | ||
|
||
publishing { | ||
publications { | ||
create<MavenPublication>("maven") { | ||
from(components["kotlin"]) | ||
} | ||
} | ||
repositories { | ||
maven { setUrl("${rootProject.buildDir}/repo") } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters