Skip to content

Commit

Permalink
Gradle 5.0-rc-1 part 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
daggerok committed Nov 7, 2018
1 parent db4a640 commit ebb9c41
Show file tree
Hide file tree
Showing 29 changed files with 35 additions and 34 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-rc-1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion generators/app/templates/java-akka-actor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-ee-faces/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-ee-thymeleaf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-ee/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

@Log
@Provider
public class ErrorHandler implements ExceptionMapper<Throwable> {
public class ErrorHandler implements ExceptionMapper<Exception> {

@Override
public Response toResponse(final Throwable exception) {
public Response toResponse(final Exception exception) {
final String message = exception.getLocalizedMessage();
log.severe(() -> format("Unexpected error: %s", message));
return Response.status(BAD_REQUEST)
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-spring-boot-1.x/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-vertx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/java-wildfly-swarm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ apply from: "$projectDir/gradle/docs.gradle"
//apply from: "$projectDir/gradle/build-scan.gradle"

wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
2 changes: 1 addition & 1 deletion generators/app/templates/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/kotlin-ee/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/kotlin-spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/kotlin-vertx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'ALL'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/kotlin-wildfly-swarm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ plugins {
apply plugin: 'wildfly-swarm'

wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}

Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'ALL'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/scala-2.11/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ plugins {

/*
wrapper {
gradleVersion = '4.10.2'
gradleVersion = '5.0-rc-1'
distributionType = 'BIN'
}
*/
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-jvm",
"version": "1.18.69",
"version": "1.18.70",
"description": "Helps you quick and easy generate JVM-based (java, java ee, kotlin, scala) projects with gradle and maven build systems, docker and docker-compose for rapid development",
"homepage": "https://github.com/daggerok/generator-jvm",
"author": {
Expand Down Expand Up @@ -41,6 +41,7 @@
"asciidoctor",
"spring-boot",
"spring-cloud",
"payara-micro",
"wildfly-swarm",
"spring-webflux",
"docker-compose",
Expand All @@ -51,7 +52,7 @@
"spring-cloud-function"
],
"devDependencies": {
"@types/node": "10.12.2",
"@types/node": "10.12.3",
"@types/yeoman-generator": "3.0.0",
"coveralls": "3.0.2",
"husky": "1.1.3",
Expand Down

0 comments on commit ebb9c41

Please sign in to comment.