Skip to content

Commit

Permalink
renew verions in build and updateSinceUntilBuild=false
Browse files Browse the repository at this point in the history
  • Loading branch information
brizjin committed Oct 21, 2018
1 parent ec7d649 commit e297091
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

plugins {
id "org.jetbrains.intellij" version "0.2.17"
id "org.jetbrains.intellij" version "0.3.12"
}

group 'antlr'
Expand All @@ -17,22 +17,24 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
intellij {
version = '2017.2.6' //'IC-2016.3.3' // https://www.jetbrains.com/intellij-repository/releases
version = '2018.2.5' //'IC-2016.3.3' // https://www.jetbrains.com/intellij-repository/releases

pluginName 'antlr-intellij-plugin-v4'
downloadSources true
updateSinceUntilBuild false
}

def gen = file('gen')
def gram = file('src/grammars')

idea {
project {
jdkName = '1.8'
languageLevel = '1.8'
}
// project {
// jdkName = '1.8'
// languageLevel = '1.8'
// }
module {
generatedSourceDirs += gen
jdkName = '1.8'
excludeDirs += files('.idea', 'gradle', 'lib', 'images')
}
}
Expand All @@ -51,7 +53,7 @@ repositories {
}

dependencies {
compile "org.antlr:antlr4:4.7" // use ANTLR version 4
compile "org.antlr:antlr4:4.7.1" // use ANTLR version 4
testCompile group: 'junit', name: 'junit', version: '4.11'
}

Expand Down

0 comments on commit e297091

Please sign in to comment.