From 18c80e563d230559ac930d768bd5017ecee362a9 Mon Sep 17 00:00:00 2001 From: hurricup Date: Tue, 10 Jul 2018 22:23:27 +0300 Subject: [PATCH] 2018.1.6 - gradle update - published in plugin repo Fixes #11 --- README.md | 10 +++------- build.gradle | 6 +++--- gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew | 0 4 files changed, 7 insertions(+), 11 deletions(-) mode change 100644 => 100755 gradlew diff --git a/README.md b/README.md index 4091980..daffbab 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,8 @@ This plugin simplifies automation of generating lexers and parsers for IntelliJ ### Loading and applying the plugin ```groovy -buildscript { - repositories { - maven { url 'https://jitpack.io'} - } - dependencies{ - classpath "com.github.JetBrains:gradle-grammar-kit-plugin:2018.1.3" - } +plugins { + id "org.jetbrains.grammarkit" version "2018.1.6" } apply plugin: 'org.jetbrains.grammarkit' @@ -81,6 +76,7 @@ task generatePerl5Parser(type: GenerateParser) { * [IntelliJ-patched JFlex Sources](https://github.com/JetBrains/intellij-deps-jflex) * [IntelliJ-patched JFlex Bintray](https://bintray.com/jetbrains/intellij-third-party-dependencies/jflex) * [Grammar-Kit](https://github.com/JetBrains/Grammar-Kit) +* [Plugin page on plugin.gradle.org](https://plugins.gradle.org/plugin/org.jetbrains.grammarkit) ## Usage examples diff --git a/build.gradle b/build.gradle index 88e4b65..88e67ea 100644 --- a/build.gradle +++ b/build.gradle @@ -17,13 +17,13 @@ dependencies { compile localGroovy() } -version = '2018.1.3' +version = '2018.1.6' group = 'org.jetbrains.intellij.plugins' description = "This plugin allows you to generate lexers using JetBrains patched JFLex and parsers using Grammar-Kit." pluginBundle { - website = 'https://github.com/hurricup/gradle-grammar-kit-plugin' - vcsUrl = 'https://github.com/hurricup/gradle-grammar-kit-plugin' + website = 'https://github.com/JetBrains/gradle-grammar-kit-plugin' + vcsUrl = 'https://github.com/JetBrains/gradle-grammar-kit-plugin' description = 'Plugin for generating lexers and parsers for IntelliJ plugins' tags = ['intellij', 'jetbrains', 'idea', 'Grammar-Kit', 'JFlex'] diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3ba2e2f..ee0eea3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip diff --git a/gradlew b/gradlew old mode 100644 new mode 100755