Skip to content

Commit

Permalink
switch to non v8 stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Aug 2, 2024
1 parent 6747aa7 commit 832ae67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generators/kotlin/__snapshots__/generator.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ exports[`SubGenerator kotlin of kotlin JHipster blueprint > maven > should match
{
"dependencies": [
{
"artifactId": "kotlin-stdlib-jdk8",
"artifactId": "kotlin-stdlib",
"groupId": "org.jetbrains.kotlin",
},
{
Expand Down
2 changes: 1 addition & 1 deletion generators/kotlin/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.internal.KaptGenerateStubsTask.class)
source.addJavaDefinition({
versions: [{ name: 'kotlin', version: application.javaDependencies.kotlin }],
dependencies: [
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-stdlib-jdk8' },
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-stdlib' },
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-reflect' },
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-test-junit', scope: 'test' },
{
Expand Down
2 changes: 1 addition & 1 deletion generators/kotlin/templates/gradle/kotlin.gradle.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.gradle.internal.os.OperatingSystem

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlin:kotlin-reflect"

<%_ if (reactive) { _%>
Expand Down

0 comments on commit 832ae67

Please sign in to comment.