File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
development/java/Rubberduck.Parsing/Grammar Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 11buildscript {
2+ project. ext. antlrVersion = ' 4.7.2'
3+
24 repositories {
3- mavenCentral();
5+ mavenCentral()
46 }
57
68 dependencies {
7- classpath group : ' org.antlr' , name : ' antlr4' , version : ' 4.7.2 '
9+ classpath group : ' org.antlr' , name : ' antlr4' , version : " ${ project.ext.antlrVersion } "
810 }
911}
1012
1113plugins {
1214 id ' java'
1315}
1416
17+ def envVersion = System . getenv(" APPVEYOR_VERSION" )
18+
1519group ' com.rubberduckvba.rubberduck.parsing'
16- version ' 1 '
20+ version envVersion == null ? ' snapshot ' : envVersion
1721
1822repositories {
1923 mavenCentral()
2024}
2125
2226dependencies {
23- compile group : ' org.antlr' , name : ' antlr4-runtime' , version : ' 4.7.2 '
27+ compile group : ' org.antlr' , name : ' antlr4-runtime' , version : " ${ project.ext.antlrVersion } "
2428}
2529
2630def grammarCodeGenDest = " ${ projectDir} /src/main/gen"
You can’t perform that action at this time.
0 commit comments