Skip to content

Commit

Permalink
Revert "use kotlin-stdlib instead of kotlin-stdlib-jdk8"
Browse files Browse the repository at this point in the history
This reverts commit f2daeca.
  • Loading branch information
mshima committed Jul 26, 2024
1 parent 940f6a8 commit 53e3610
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 @@ -71,7 +71,7 @@ exports[`SubGenerator kotlin of kotlin JHipster blueprint > maven > should match
{
"dependencies": [
{
"artifactId": "kotlin-stdlib",
"artifactId": "kotlin-stdlib-jdk8",
"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 @@ -151,7 +151,7 @@ export default class extends BaseApplicationGenerator {
source.addJavaDefinition({
versions: [{ name: 'kotlin', version: application.javaDependencies.kotlin }],
dependencies: [
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-stdlib' },
{ groupId: 'org.jetbrains.kotlin', artifactId: 'kotlin-stdlib-jdk8' },
{ 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 @@ -30,7 +30,7 @@ apply plugin: "org.jlleitschuh.gradle.ktlint"

dependencies {
implementation platform("org.jetbrains.kotlin:kotlin-bom:${kotlin_version}")
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect"

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

0 comments on commit 53e3610

Please sign in to comment.