Skip to content

Commit

Permalink
2018.1.6
Browse files Browse the repository at this point in the history
- gradle update
- published in plugin repo

Fixes #11
  • Loading branch information
hurricup committed Jul 11, 2018
1 parent d3f8f5c commit 18c80e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 18c80e5

Please sign in to comment.