Skip to content

Commit

Permalink
Release 0.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed May 15, 2019
1 parent 2a19d59 commit 7eee104
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 16 deletions.
7 changes: 3 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:spring-fu-version: 0.1.BUILD-SNAPSHOT
:spring-fu-version: 0.1
:kofu-kdoc-url: http://repo.spring.io/snapshot/org/springframework/fu/spring-fu-kofu/{spring-fu-version}/spring-fu-kofu-{spring-fu-version}-javadoc.jar!
:framework-kdoc-url: https://docs.spring.io/spring-framework/docs/5.2.0.BUILD-SNAPSHOT/kdoc-api

image:https://ci.spring.io/api/v1/teams/spring-fu/pipelines/spring-fu/badge["Build Status", link="https://ci.spring.io/teams/spring-fu/pipelines/spring-fu"] image:https://img.shields.io/badge/API%20documentation-0.1-blue.svg["API documentation", link="http://repo.spring.io/snapshot/org/springframework/fu/spring-fu-kofu/{spring-fu-version}/spring-fu-kofu-{spring-fu-version}-javadoc.jar!/kofu/org.springframework.fu.kofu/-application-dsl.html"]
image:https://ci.spring.io/api/v1/teams/spring-fu/pipelines/spring-fu/badge["Build Status", link="https://ci.spring.io/teams/spring-fu/pipelines/spring-fu"] image:https://img.shields.io/badge/API%20documentation-0.1-blue.svg["API documentation", link="http://repo.spring.io/milestone/org/springframework/fu/spring-fu-kofu/{spring-fu-version}/spring-fu-kofu-{spring-fu-version}-javadoc.jar!/kofu/org.springframework.fu.kofu/-application-dsl.html"]

Spring Fu is an incubator for *Kofu* (*Ko* for Kotlin, *fu* for functional), which provides a Kotlin API to configure Spring Boot applications programmatically with following characteristics:

Expand Down Expand Up @@ -91,9 +91,8 @@ dependencies {

== Getting started

* Create a Spring `2.2.0 (SNAPSHOT)` project on https://start.spring.io/#!language=kotlin[start.spring.io] with the "Web" or "Reactive web" starter
* Create a Spring `2.2.0.M3` project on https://start.spring.io/#!language=kotlin[start.spring.io] with the "Web" or "Reactive web" starter
* Add the `org.springframework.fu:spring-fu-kofu:{spring-fu-version}` dependency
* Use latest Kotlin `1.3.x`
* Modify the generated `DemoApplication.kt` file as following:

```kotlin
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("org.jetbrains.kotlin.jvm") version "1.3.31" apply false
id("org.springframework.boot") version "2.2.0.BUILD-SNAPSHOT" apply false
id("org.springframework.boot") version "2.2.0.M3" apply false
id("org.jetbrains.dokka") version "0.9.18" apply false
id("io.spring.dependency-management") version "1.0.7.RELEASE"
id("maven-publish")
Expand All @@ -14,7 +14,7 @@ allprojects {
plugin("io.spring.dependency-management")
}

version = "0.1.BUILD-SNAPSHOT"
version = "0.1"
group = "org.springframework.fu"

dependencyManagement {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bootVersion=2.2.0.BUILD-SNAPSHOT
bootVersion=2.2.0.M3
coroutinesVersion=1.2.1
kotlin.version=1.3.31
springDataR2dbcVersion=1.0.0.M2
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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-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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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-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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.2.0")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
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.1.BUILD-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.1")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.2.2")
Expand Down

0 comments on commit 7eee104

Please sign in to comment.