Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency com.javiersc.hubdle to v0.6.2 #138

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

### Updated

- `com.javiersc.hubdle:com.javiersc.hubdle.gradle.plugin -> 0.6.2`
- `gradle -> 8.6`
- `com.javiersc.hubdle:com.javiersc.hubdle.gradle.plugin -> 0.5.0-beta.16`

## [0.1.0-alpha.15] - 2023-06-05

Expand Down
4 changes: 2 additions & 2 deletions build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ repositories {

dependencies {
implementation(gradleKotlinDsl())
implementation(hubdle.javiersc.kotlin.kotlinStdlib)
implementation(hubdle.jetbrains.kotlin.kotlinGradlePlugin)
implementation(hubdle.javiersc.kotlin.stdlib)
implementation(hubdle.jetbrains.kotlin.gradle.plugin)
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
hubdle = "0.5.0-beta.16"
hubdle = "0.6.2"

[plugins]
javiersc-hubdle = { id = "com.javiersc.hubdle", version.ref = "hubdle" }
2 changes: 1 addition & 1 deletion kotlin-stdlib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ hubdle {
jvm {
test {
dependencies { //
implementation(hubdle.junit.jupiter.junitJupiter)
implementation(hubdle.junit.jupiter.junit.jupiter)
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions kotlin-test-junit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ hubdle {
common {
main {
dependencies {
implementation(hubdle.jetbrains.kotlin.kotlinTestAnnotationsCommon)
implementation(hubdle.jetbrains.kotlin.kotlinTestJUnit)
implementation(hubdle.jetbrains.kotlin.test.annotations.common)
implementation(hubdle.jetbrains.kotlin.test.junit)
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions kotlin-test-junit5/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ hubdle {
common {
main {
dependencies {
implementation(hubdle.jetbrains.kotlin.kotlinTest)
implementation(hubdle.jetbrains.kotlin.kotlinTestAnnotationsCommon)
implementation(hubdle.jetbrains.kotlin.test)
implementation(hubdle.jetbrains.kotlin.test.annotations.common)
}
}
}
Expand Down Expand Up @@ -76,7 +76,7 @@ hubdle {
jvm {
main { //
dependencies { //
implementation(hubdle.jetbrains.kotlin.kotlinTestJUnit5)
implementation(hubdle.jetbrains.kotlin.test.junit5)
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions kotlin-test-testng/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ hubdle {
common {
main {
dependencies {
implementation(hubdle.jetbrains.kotlin.kotlinTest)
implementation(hubdle.jetbrains.kotlin.kotlinTestAnnotationsCommon)
implementation(hubdle.jetbrains.kotlin.test)
implementation(hubdle.jetbrains.kotlin.test.annotations.common)
}
}
}
Expand Down Expand Up @@ -76,7 +76,7 @@ hubdle {
jvm {
main {
dependencies {
implementation(hubdle.jetbrains.kotlin.kotlinTestNG)
implementation(hubdle.jetbrains.kotlin.test.testng)
}
}
}
Expand Down
Loading