Skip to content

Commit fece746

Browse files
Bump version to 0.7.0. Also, upgrade dependency versions (#83)
1 parent e6af09a commit fece746

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
// https://github.com/JetBrains/gradle-changelog-plugin
1818
id 'org.jetbrains.changelog' version "$versionGradleChangelog"
1919

20-
id 'org.jetbrains.grammarkit' version "2021.2.2"
20+
id 'org.jetbrains.grammarkit' version "2022.3.1"
2121
}
2222

2323
apply plugin: 'idea'

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
version=0.6.2
1+
version=0.7.0
22

33
# Intellij SDK
44
intellijSdkVersion=2023.2
55

66
# Versions
7-
versionGradleIntelliJ=1.13.3
7+
versionGradleIntelliJ=1.15.0
88
versionGradleChangelog=2.0.0
9-
versionGradleGrammarKit=2021.2.2
9+
versionGradleGrammarKit=2022.3.1
1010
versionJunit=4.12
1111
versionAssertj=3.23.1
1212
versionMockito=2.27.0
1313
versionPrefuse=1.0.0
14-
versionJacksonMapper=2.9.8
14+
versionJacksonMapper=2.15.2
1515
# Official compatibility table https://neo4j.com/developer/kb/neo4j-supported-versions/
16-
versionNeo4jJavaBoltDriver=5.10.0
16+
versionNeo4jJavaBoltDriver=5.11.0
1717
versionTestcontainers=1.17.6
1818

1919
# Performance
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

language/cypher/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ intellij {
1414
}
1515

1616
tasks.register("generateCypherLexer", GenerateLexerTask.class) {
17-
source = "src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/CypherLexer.flex"
17+
sourceFile = new File("src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/CypherLexer.flex")
1818
targetDir = "src/main/gen/com/albertoventurini/graphdbplugin/language/cypher/lexer/"
1919
targetClass = "CypherLexer"
2020
purgeOldFiles = true
2121
}
2222

2323
tasks.register("generateCypherParser", GenerateParserTask.class) {
24-
source = "src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/Cypher.bnf"
24+
sourceFile = new File("src/main/java/com/albertoventurini/graphdbplugin/language/cypher/lexer/Cypher.bnf")
2525
targetRoot = "src/main/gen"
2626
pathToParser = "com/albertoventurini/graphdbplugin/language/cypher/CypherParser.java"
2727
pathToPsiRoot = "com/albertoventurini/graphdbplugin/language/cypher/psi"

0 commit comments

Comments
 (0)