diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 51301a1e..283c778e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -26,7 +26,7 @@ Hi, - OS: [e.g. Ubuntu 18.04.1, Windows 10 Pro, Mac OS X] - JDK: [e.g. Oracle JDK 11 64 bits] - Gradle: [e.g. Gradle 6.8] -- Frontend Gradle plugin: [e.g. 5.1.0 JDK 11] +- Frontend Gradle plugin: [e.g. 5.2.0 JDK 11] Settings in `build.gradle[.kts]` file: ```groovy diff --git a/README.md b/README.md index 976fe673..9e146213 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

Frontend Gradle plugin - Integrated Node.js, npm, Yarn builds

- Latest release 5.1.0 + Latest release 5.2.0 License Apache 2.0
Build status @@ -48,6 +48,7 @@ With their feedback, plugin improvement is possible. Special thanks to: @[ckosloski](https://github.com/ckosloski), @[davidkron](https://github.com/davidkron), @[fdw](https://github.com/fdw), +@[joschi](https://github.com/joschi), @[jorgheymans](https://github.com/jorgheymans), @[ludik0](https://github.com/ludik0), @[mike-howell](https://github.com/mike-howell), diff --git a/build.gradle.kts b/build.gradle.kts index ed806b40..cf14e9d1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -123,7 +123,7 @@ sonarqube { property("sonar.organization", "siouan") property("sonar.projectKey", "siouan_frontend-gradle-plugin") property("sonar.projectName", "frontend-gradle-plugin") - property("sonar.projectVersion", "5.1.0") + property("sonar.projectVersion", "5.2.0") property("sonar.links.homepage", "https://github.com/siouan/frontend-gradle-plugin") property("sonar.links.ci", "https://travis-ci.com/siouan/frontend-gradle-plugin") diff --git a/examples/multi-projects-applications-shared-distributions/settings.gradle b/examples/multi-projects-applications-shared-distributions/settings.gradle index 2c08b9dc..28b0626f 100644 --- a/examples/multi-projects-applications-shared-distributions/settings.gradle +++ b/examples/multi-projects-applications-shared-distributions/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { plugins { - id 'org.siouan.frontend-jdk11' version '5.1.0' + id 'org.siouan.frontend-jdk11' version '5.2.0' } repositories { gradlePluginPortal() diff --git a/examples/multi-projects-war-application/backend/build.gradle b/examples/multi-projects-war-application/backend/build.gradle index 15f4aa0d..797588a3 100644 --- a/examples/multi-projects-war-application/backend/build.gradle +++ b/examples/multi-projects-war-application/backend/build.gradle @@ -5,7 +5,7 @@ plugins { id 'io.spring.dependency-management' } -version '5.1.0' +version '5.2.0' repositories { mavenCentral() diff --git a/examples/multi-projects-war-application/settings.gradle b/examples/multi-projects-war-application/settings.gradle index 9aeded90..2e6aed71 100644 --- a/examples/multi-projects-war-application/settings.gradle +++ b/examples/multi-projects-war-application/settings.gradle @@ -4,7 +4,7 @@ pluginManagement { id 'war' id 'org.springframework.boot' version '2.4.5' id 'io.spring.dependency-management' version '1.0.11.RELEASE' - id 'org.siouan.frontend-jdk11' version '5.1.0' + id 'org.siouan.frontend-jdk11' version '5.2.0' } repositories { gradlePluginPortal() diff --git a/examples/single-project-application-preinstalled-distributions/settings.gradle b/examples/single-project-application-preinstalled-distributions/settings.gradle index 20fb9530..6661f4e6 100644 --- a/examples/single-project-application-preinstalled-distributions/settings.gradle +++ b/examples/single-project-application-preinstalled-distributions/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { plugins { - id 'org.siouan.frontend-jdk11' version '5.1.0' + id 'org.siouan.frontend-jdk11' version '5.2.0' } repositories { gradlePluginPortal() diff --git a/examples/single-project-application/settings.gradle b/examples/single-project-application/settings.gradle index 20fb9530..6661f4e6 100644 --- a/examples/single-project-application/settings.gradle +++ b/examples/single-project-application/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { plugins { - id 'org.siouan.frontend-jdk11' version '5.1.0' + id 'org.siouan.frontend-jdk11' version '5.2.0' } repositories { gradlePluginPortal() diff --git a/gradle.properties b/gradle.properties index a79c0c9d..9e9929d2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ fgpArtifactId=frontend-gradle-plugin-jdk11 fgpGroup=org.siouan -fgpVersion=5.1.0 +fgpVersion=5.2.0 fgpDisplayName=Frontend Gradle plugin fgpDescription=Build frontend applications with Node, NPM, Yarn: distribution management, configurable tasks (build, test, publish), additional types, support of NPX. fgpPluginId=org.siouan.frontend-jdk11 diff --git a/site/build.gradle.kts b/site/build.gradle.kts index 0c5fc8fd..1b2bfa54 100644 --- a/site/build.gradle.kts +++ b/site/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.siouan.frontend-jdk11") version "5.0.1" + id("org.siouan.frontend-jdk11") version "5.1.0" } frontend { diff --git a/site/package.json b/site/package.json index 9185dbf8..957d6c43 100644 --- a/site/package.json +++ b/site/package.json @@ -2,7 +2,7 @@ "name": "frontend-gradle-plugin-site", "description": "Frontend Gradle plugin's official site", "license": "Apache-2.0", - "version": "5.1.0", + "version": "5.2.0", "scripts": { "dev": "nuxt", "build": "nuxt build", diff --git a/site/src/pages/getting-started.vue b/site/src/pages/getting-started.vue index f2079c08..a0d972e8 100644 --- a/site/src/pages/getting-started.vue +++ b/site/src/pages/getting-started.vue @@ -4,7 +4,7 @@ Requirements