Skip to content

Commit

Permalink
Switch to 0.4.5-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Apr 6, 2021
1 parent f0a70c4 commit 9ed7398
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
plugin("io.spring.dependency-management")
}

version = "0.4.4"
version = "0.4.5-SNAPSHOT"
group = "org.springframework.fu"

dependencyManagement {
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-data-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")

implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")

implementation("org.springframework.boot:spring-boot-starter-webflux")

Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")

implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-servlet-cassandra/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")
implementation("org.testcontainers:cassandra:1.15.1")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.data:spring-data-cassandra")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-servlet-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.4")
implementation("org.springframework.fu:spring-fu-jafu:0.4.5-SNAPSHOT")

implementation("org.springframework.boot:spring-boot-starter-web")

Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-r2dbc")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-petclinic-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.springframework.fu</groupId>
<artifactId>spring-fu-kofu</artifactId>
<version>0.4.4</version>
<version>0.4.5-SNAPSHOT</version>
</dependency>

<!-- Spring and Spring Boot dependencies -->
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-cassandra/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-cassandra-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-data-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")

testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-redis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.4.0")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-servlet-jooq/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-jooq")
implementation("org.springframework.boot:spring-boot-starter-mustache")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-servlet-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-web")

testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-servlet-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.4")
implementation("org.springframework.fu:spring-fu-kofu:0.4.5-SNAPSHOT")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.4.0")
Expand Down

0 comments on commit 9ed7398

Please sign in to comment.