Skip to content

Commit 0b2b520

Browse files
jmfayarddaviddenton
authored andcommitted
gradle-kotlin-dsl-libs version "0.2.4" (http4k#187)
* Refactor some build logic to the buildSrc & gradle kotlin-dsl Files buildSrc/src/main/java/{Versions.kt,Libs.kt} generated by kotlinpoet and the task $ ./gradlew syncLibs from the plugin gradle-kotlin-dsl-libs Signed-off-by: Jean-Michel Fayard <[email protected]> * gradle-kotlin-dsl-libs version "0.2.4" Changelog: - http4k#1 Make it slightly easier to manually update the version - http4k#3 Add buildSrc/.gitignore - http4k#4 SyncLibs generate wrong output file Signed-off-by: Jean-Michel Fayard <[email protected]> * Revert change to MimeUtility.java Signed-off-by: Jean-Michel Fayard <[email protected]>
1 parent 59c9814 commit 0b2b520

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
id 'net.saliman.cobertura' version '2.5.4'
1818
id 'nebula.provided-base' version '3.0.3'
1919
id 'com.github.kt3k.coveralls' version '2.8.2'
20-
id 'jmfayard.github.io.gradle-kotlin-dsl-libs' version "0.2.3"
20+
id 'jmfayard.github.io.gradle-kotlin-dsl-libs' version "0.2.4"
2121
}
2222

2323
allprojects {

buildSrc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
.gradle/
3+
build/

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import kotlin.String
2+
13
/**
24
* Generated by [gradle-kotlin-dsl-libs](https://github.com/jmfayard/gradle-kotlin-dsl-libs)
35
*
@@ -54,7 +56,7 @@ object Versions {
5456
const val jetty_servlet: String = "9.4.12.RC2" // up-to-date
5557

5658
const val jmfayard_github_io_gradle_kotlin_dsl_libs_gradle_plugin: String =
57-
"0.2.3" // up-to-date
59+
"0.2.4" // exceed the version found: 0.2.3
5860

5961
const val json: String = "20180813" // up-to-date
6062

@@ -72,17 +74,17 @@ object Versions {
7274

7375
const val kotlin_stdlib_jdk8: String = "1.2.71" // up-to-date
7476

75-
const val micrometer_core: String = "1.0.6" // up-to-date
77+
const val micrometer_core: String = "1.0.6" // available milestone: "1.0.7"
7678

7779
const val moshi: String = "1.7.0" // up-to-date
7880

7981
const val moshi_kotlin: String = "1.7.0" // up-to-date
8082

81-
const val nebula_provided_base_gradle_plugin: String = "3.0.3" // available: milestone=4.0.1
83+
const val nebula_provided_base_gradle_plugin: String = "3.0.3" // available milestone: "4.0.1"
8284

8385
const val net_saliman_cobertura_gradle_plugin: String = "2.5.4" // up-to-date
8486

85-
const val netty_codec_http2: String = "4.1.23.Final" // available: milestone=5.0.0.Alpha2
87+
const val netty_codec_http2: String = "4.1.23.Final" // available milestone: "5.0.0.Alpha2"
8688

8789
const val okhttp: String = "3.11.0" // up-to-date
8890

@@ -106,12 +108,17 @@ object Versions {
106108

107109
const val undertow_servlet: String = "2.0.13.Final" // up-to-date
108110

111+
/**
112+
*
113+
* To update Gradle, edit the wrapper file at path:
114+
* ./gradle/wrapper/gradle-wrapper.properties
115+
*/
109116
object Gradle {
110-
const val runningVersion: String = "4.6"
117+
const val runningVersion: String = "4.10.2"
111118

112119
const val currentVersion: String = "4.10.2"
113120

114-
const val nightlyVersion: String = "5.1-20181012235835+0000"
121+
const val nightlyVersion: String = "5.1-20181015235836+0000"
115122

116123
const val releaseCandidate: String = ""
117124
}

0 commit comments

Comments
 (0)