Skip to content

Commit

Permalink
Fixed examples and version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
v1nc3n4 committed Nov 1, 2020
1 parent 42079ca commit 217826d
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Actual results: ...
- 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.6]
- Frontend Gradle plugin: [e.g. 4.0.0]
- Frontend Gradle plugin: [e.g. 4.0.1]

Settings in `build.gradle[.kts]` file:
```groovy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

frontend {
nodeVersion = '12.16.2'
nodeVersion = '14.15.0'
nodeInstallDirectory = project.nodeInstallDirectory
assembleScript = 'run build'
cleanScript = 'run clean'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id 'org.siouan.frontend-jdk11' version '4.0.0'
id 'org.siouan.frontend-jdk11' version '4.0.1'
}
repositories {
gradlePluginPortal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ frontend {
nodeDistributionProvided = true
nodeInstallDirectory = project.nodeInstallDirectory
yarnEnabled = true
yarnVersion = '1.22.4'
yarnVersion = '1.22.10'
yarnInstallDirectory = file("${rootProject.projectDir}/yarn")
assembleScript = 'run build'
cleanScript = 'run clean'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'io.spring.dependency-management'
}

version '4.0.0'
version '4.0.1'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

frontend {
nodeVersion = '12.16.2'
nodeVersion = '14.15.0'
assembleScript = 'run build'
cleanScript = 'run clean'
checkScript = 'run check'
Expand Down
6 changes: 3 additions & 3 deletions examples/multi-projects-war-application/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ pluginManagement {
plugins {
id 'java'
id 'war'
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'org.siouan.frontend-jdk11' version '4.0.0'
id 'org.springframework.boot' version '2.3.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'org.siouan.frontend-jdk11' version '4.0.1'
}
repositories {
gradlePluginPortal()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id 'org.siouan.frontend-jdk11' version '4.0.0'
id 'org.siouan.frontend-jdk11' version '4.0.1'
}
repositories {
gradlePluginPortal()
Expand Down
2 changes: 1 addition & 1 deletion examples/single-project-application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

frontend {
nodeVersion = '12.16.2'
nodeVersion = '14.15.0'
assembleScript = 'run build'
cleanScript = 'run clean'
checkScript = 'run check'
Expand Down
2 changes: 1 addition & 1 deletion examples/single-project-application/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id 'org.siouan.frontend-jdk11' version '4.0.0'
id 'org.siouan.frontend-jdk11' version '4.0.1'
}
repositories {
gradlePluginPortal()
Expand Down
2 changes: 1 addition & 1 deletion site/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.siouan.frontend-jdk11") version "4.0.0"
id("org.siouan.frontend-jdk11") version "4.0.1"
}

frontend {
Expand Down
18 changes: 9 additions & 9 deletions site/src/pages/getting-started.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Starting from release <fgp-repo-link path="/releases/tag/v3.0.1">3.0.1</fgp-repo-link>, ID
<fgp-code>org.siouan.frontend</fgp-code> and classpath
<fgp-code>org.siouan:frontend-gradle-plugin:&lt;version></fgp-code> are deprecated. If you are already using
the plugin, we recommend <fgp-repo-link path="/releases/tag/v4.0.0-jdk11">upgrading</fgp-repo-link> to the latest
the plugin, we recommend <fgp-repo-link path="/releases/tag/v4.0.1-jdk11">upgrading</fgp-repo-link> to the latest
release as soon as possible.
</fgp-info>
<ol>
Expand All @@ -41,17 +41,17 @@
<template v-slot:groovy>
<pre><fgp-code>plugins {
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
id 'org.siouan.frontend-jdk11' version '4.0.0'
id 'org.siouan.frontend-jdk11' version '4.0.1'
<fgp-code-comment>// For JDK 8+</fgp-code-comment>
id 'org.siouan.frontend-jdk8' version '4.0.0'
id 'org.siouan.frontend-jdk8' version '4.0.1'
}</fgp-code></pre>
</template>
<template v-slot:kotlin>
<pre><fgp-code>plugins {
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
id("org.siouan.frontend-jdk11") version "4.0.0"
id("org.siouan.frontend-jdk11") version "4.0.1"
<fgp-code-comment>// For JDK 8+</fgp-code-comment>
id("org.siouan.frontend-jdk8") version "4.0.0"
id("org.siouan.frontend-jdk8") version "4.0.1"
}</fgp-code></pre>
</template>
</fgp-gradle-scripts>
Expand All @@ -70,9 +70,9 @@
}
dependencies {
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
classpath 'org.siouan:frontend-gradle-plugin-jdk11:4.0.0'
classpath 'org.siouan:frontend-gradle-plugin-jdk11:4.0.1'
<fgp-code-comment>// For JDK 8+</fgp-code-comment>
classpath 'org.siouan:frontend-gradle-plugin-jdk8:4.0.0'
classpath 'org.siouan:frontend-gradle-plugin-jdk8:4.0.1'
}
}

Expand All @@ -88,9 +88,9 @@ apply plugin: 'org.siouan.frontend-jdk8'</fgp-code></pre>
}
dependencies {
<fgp-code-comment>// For JDK 11+</fgp-code-comment>
classpath("org.siouan:frontend-gradle-plugin-jdk11:4.0.0")
classpath("org.siouan:frontend-gradle-plugin-jdk11:4.0.1")
<fgp-code-comment>// For JDK 8+</fgp-code-comment>
classpath("org.siouan:frontend-gradle-plugin-jdk8:4.0.0")
classpath("org.siouan:frontend-gradle-plugin-jdk8:4.0.1")
}
}

Expand Down
6 changes: 3 additions & 3 deletions site/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
- Integrated <fgp-nodejs-link />, <fgp-npm-link />, <fgp-yarn-link /> builds
</small>
<fgp-image-link
href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v4.0.0-jdk11"
src="https://img.shields.io/badge/Latest%20release-4.0.0-blue.svg"
alt="Latest release 4.0.0"
href="https://github.com/siouan/frontend-gradle-plugin/releases/tag/v4.0.1-jdk11"
src="https://img.shields.io/badge/Latest%20release-4.0.1-blue.svg"
alt="Latest release 4.0.1"
class="ml-1"
/>
</fgp-main-title>
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.projectKey=siouan_frontend-gradle-plugin
sonar.projectName=frontend-gradle-plugin
sonar.projectVersion=4.0.0-jdk11
sonar.projectVersion=4.0.1-jdk11

sonar.links.homepage=https://github.com/siouan/frontend-gradle-plugin
sonar.links.ci=https://travis-ci.com/siouan/frontend-gradle-plugin
Expand Down

0 comments on commit 217826d

Please sign in to comment.