diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 657f5f16..d8a01891 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -26,7 +26,7 @@ Actual results: ... - OS: [e.g. Ubuntu 22.04.1, Windows 11 Pro, Mac OS X] - JDK: [e.g. Adoptium Temurin JDK 17 64 bits] - Gradle: [e.g. Gradle 8.2.1] -- Frontend Gradle plugin: [e.g. 7.1.0 JDK 11] +- Frontend Gradle plugin: [e.g. 8.0.0 JDK 17] Settings in `build.gradle[.kts]` file: ```groovy diff --git a/README.md b/README.md index e8e55f60..9355d85f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ npm, pnpm, Yarn builds

- Latest release 7.1.0 + Latest release 8.0.0 License Apache 2.0
Build status diff --git a/examples/application-with-preinstalled-nodejs-distribution/settings.gradle.kts b/examples/application-with-preinstalled-nodejs-distribution/settings.gradle.kts index 960cc46f..5d528769 100644 --- a/examples/application-with-preinstalled-nodejs-distribution/settings.gradle.kts +++ b/examples/application-with-preinstalled-nodejs-distribution/settings.gradle.kts @@ -1,5 +1,5 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/fullstack-war-application/settings.gradle.kts b/examples/fullstack-war-application/settings.gradle.kts index 0fad4f33..915cef82 100644 --- a/examples/fullstack-war-application/settings.gradle.kts +++ b/examples/fullstack-war-application/settings.gradle.kts @@ -4,7 +4,7 @@ pluginManagement { id("war") id("org.springframework.boot") version "2.7.12" id("io.spring.dependency-management") version "1.1.0" - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/multiple-package-managers-with-shared-nodejs-distribution/settings.gradle.kts b/examples/multiple-package-managers-with-shared-nodejs-distribution/settings.gradle.kts index 08c892f6..6fada5e6 100644 --- a/examples/multiple-package-managers-with-shared-nodejs-distribution/settings.gradle.kts +++ b/examples/multiple-package-managers-with-shared-nodejs-distribution/settings.gradle.kts @@ -1,6 +1,6 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/npm-application/settings.gradle.kts b/examples/npm-application/settings.gradle.kts index 960cc46f..5d528769 100644 --- a/examples/npm-application/settings.gradle.kts +++ b/examples/npm-application/settings.gradle.kts @@ -1,5 +1,5 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/pnpm-application/settings.gradle.kts b/examples/pnpm-application/settings.gradle.kts index 960cc46f..5d528769 100644 --- a/examples/pnpm-application/settings.gradle.kts +++ b/examples/pnpm-application/settings.gradle.kts @@ -1,5 +1,5 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/yarn-application-with-node-modules-linker/settings.gradle.kts b/examples/yarn-application-with-node-modules-linker/settings.gradle.kts index 960cc46f..5d528769 100644 --- a/examples/yarn-application-with-node-modules-linker/settings.gradle.kts +++ b/examples/yarn-application-with-node-modules-linker/settings.gradle.kts @@ -1,5 +1,5 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/examples/yarn-application-with-pnp-linker/settings.gradle.kts b/examples/yarn-application-with-pnp-linker/settings.gradle.kts index 960cc46f..5d528769 100644 --- a/examples/yarn-application-with-pnp-linker/settings.gradle.kts +++ b/examples/yarn-application-with-pnp-linker/settings.gradle.kts @@ -1,5 +1,5 @@ pluginManagement { plugins { - id("org.siouan.frontend-jdk17") version "7.1.0" + id("org.siouan.frontend-jdk17") version "8.0.0" } } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index c1962a79..033e24c4 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9b0a13f0..d11cdd90 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index aeb74cbb..fcb6fca1 100644 --- a/gradlew +++ b/gradlew @@ -130,10 +130,13 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. diff --git a/plugin/gradle.properties b/plugin/gradle.properties index f346d376..0d102e55 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -1,6 +1,6 @@ fgpArtifactId=frontend-jdk17 fgpGroup=org.siouan -fgpVersion=7.1.0 +fgpVersion=8.0.0 fgpDisplayName=Frontend Gradle plugin fgpDescription=Build Javascript applications with Node, NPM, PNPM, Yarn: distribution management and package manager activation (Corepack), built-in tasks, additional task types. fgpImplementationClass=org.siouan.frontendgradleplugin.FrontendGradlePlugin diff --git a/site/build.gradle.kts b/site/build.gradle.kts index 91422b77..29622701 100644 --- a/site/build.gradle.kts +++ b/site/build.gradle.kts @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath("org.siouan", "frontend-jdk17", "7.1.0") + classpath("org.siouan", "frontend-jdk17", "8.0.0") } } diff --git a/site/package.json b/site/package.json index 715db471..68bb184e 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": "7.1.0", + "version": "8.0.0", "packageManager": "yarn@3.6.0", "scripts": { "dev": "nuxt", diff --git a/site/src/pages/getting-started.vue b/site/src/pages/getting-started.vue index 0ad132ea..77f76665 100644 --- a/site/src/pages/getting-started.vue +++ b/site/src/pages/getting-started.vue @@ -39,17 +39,17 @@ @@ -68,9 +68,9 @@ } dependencies { // For JDK 17+ - classpath 'org.siouan:frontend-gradle-plugin-jdk17:7.1.0' + classpath 'org.siouan:frontend-gradle-plugin-jdk17:8.0.0' // For JDK 11+ - classpath 'org.siouan:frontend-gradle-plugin-jdk11:7.1.0' + classpath 'org.siouan:frontend-gradle-plugin-jdk11:8.0.0' } } @@ -86,9 +86,9 @@ apply plugin: 'org.siouan.frontend-jdk11' } dependencies { // For JDK 17+ - classpath("org.siouan:frontend-gradle-plugin-jdk17:7.1.0") + classpath("org.siouan:frontend-gradle-plugin-jdk17:8.0.0") // For JDK 11+ - classpath("org.siouan:frontend-gradle-plugin-jdk11:7.1.0") + classpath("org.siouan:frontend-gradle-plugin-jdk11:8.0.0") } } diff --git a/site/src/pages/index.vue b/site/src/pages/index.vue index 10993073..aafe7335 100644 --- a/site/src/pages/index.vue +++ b/site/src/pages/index.vue @@ -7,9 +7,9 @@ builds