Skip to content

Commit

Permalink
2022.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Nov 17, 2022
1 parent cc99da1 commit 8ac3299
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
java-version: 17

- name: Run Tests
run: ./gradlew check -PtestGradleVersion="${{ matrix.gradleVersion }}" ${{ runner.os == 'Windows' && '-PtestGradleUserHome="C:\\testGradleHome"' || '' }}
Expand All @@ -90,12 +90,12 @@ jobs:
- name: Fetch Sources
uses: actions/checkout@v3

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
java-version: 17

# Set environment variables
- name: Export Properties
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
java-version: 17

# Set environment variables
- name: Export Properties
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Gradle Grammar-Kit Plugin Changelog

## [Unreleased]
- Default Grammar-Kit updated to 2023.1
- Default Grammar-Kit updated to 2022.3
- Make `GenerateParserTask` and `GenerateLexerTask` subclasses of `JavaExec`
- Set minimum supported Gradle version from `6.7.1` to `6.8`

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
}

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = This plugin allows you to generate lexers using JetBrains patched JFLex and parsers using Grammar-Kit.
group = org.jetbrains.intellij.plugins
version=2023.1
version=2022.3
tags = intellij,jetbrains,idea,Grammar-Kit,JFlex
website = https://github.com/JetBrains/gradle-grammar-kit-plugin
vcsUrl = https://github.com/JetBrains/gradle-grammar-kit-plugin.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object GrammarKitConstants {
const val GROUP_NAME = "grammarKit"
const val GENERATE_LEXER_TASK_NAME = "generateLexer"
const val GENERATE_PARSER_TASK_NAME = "generateParser"
const val GRAMMAR_KIT_DEFAULT_VERSION = "2023.1"
const val GRAMMAR_KIT_DEFAULT_VERSION = "2022.3"
const val JFLEX_DEFAULT_VERSION = "1.7.0-1"
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "6.8"
const val GRAMMAR_KIT_CLASS_PATH_CONFIGURATION_NAME = "grammarKitClassPath"
Expand Down

0 comments on commit 8ac3299

Please sign in to comment.