Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Preparing for release v.0.9.2 (#69)
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Vakhrushev <[email protected]>
  • Loading branch information
mfvanek and mfvanek authored May 24, 2023
1 parent b6dd3b0 commit 4cd945b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ Using Gradle:
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.9.1'
```

<details>
<summary>with Kotlin DSL</summary>

```kotlin
testImplementation("io.github.mfvanek:pg-index-health-test-starter:0.9.1")
```
</details>

Using Maven:
```xml
<dependency>
Expand Down
18 changes: 9 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group = "io.github.mfvanek"
version = "0.9.2-SNAPSHOT"
version = "0.9.2"

repositories {
mavenLocal()
Expand All @@ -29,7 +29,7 @@ repositories {
val springVersion = "2.7.12"

dependencies {
api("io.github.mfvanek:pg-index-health:0.9.1")
api("io.github.mfvanek:pg-index-health:0.9.2")
implementation("org.springframework.boot:spring-boot-starter:$springVersion")
annotationProcessor("org.springframework.boot:spring-boot-autoconfigure-processor:$springVersion")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor:$springVersion")
Expand Down Expand Up @@ -186,13 +186,6 @@ tasks.build {
dependsOn("pitest")
}

signing {
if (!version.toString().endsWith("SNAPSHOT")) {
useGpgCmd()
sign(publishing.publications["mavenJava"])
}
}

publishing {
publications {
create<MavenPublication>("mavenJava") {
Expand Down Expand Up @@ -249,3 +242,10 @@ publishing {
}
}
}

signing {
if (!version.toString().endsWith("SNAPSHOT")) {
useGpgCmd()
sign(publishing.publications["mavenJava"])
}
}

0 comments on commit 4cd945b

Please sign in to comment.