Skip to content

Commit

Permalink
chore: update other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen-caps committed Apr 1, 2023
1 parent bad37ac commit 81e5697
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ buildscript {
}

plugins {
id 'org.jetbrains.intellij' version '0.3.12'
id 'org.jetbrains.intellij' version '1.13.3'
id 'maven-publish'
id 'signing'
}

wrapper {
gradleVersion = '4.10.2'
gradleVersion = '8.0.2'
}

group 'org.antlr'
Expand All @@ -26,31 +26,31 @@ compileJava {
}

intellij {
version = ideaVersion
version.set(ideaVersion)

pluginName 'antlr4-intellij-adaptor'
downloadSources true
updateSinceUntilBuild false
pluginName.set('antlr4-intellij-adaptor')
downloadSources.set(true)
updateSinceUntilBuild.set(false)
}

repositories {
mavenCentral()
}

dependencies {
compile("org.antlr:antlr4-runtime:$antlr4Version") {
implementation("org.antlr:antlr4-runtime:$antlr4Version") {
exclude group:'com.ibm.icu', module:'icu4j'
}
}

task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier = 'sources'
archiveClassifier.set('sources')
}

task javadocJar(type: Jar) {
from javadoc
classifier = 'javadoc'
archiveClassifier.set('javadoc')
}

publishing {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ libraryVersion=0.2-SNAPSHOT
ideaVersion=2018.3.2

# The version of ANTLR v4 that will be used to generate the parser
antlr4Version=4.9.2
antlr4Version=4.12.0

# Variables required to allow build.gradle to parse,
# override in ~/.gradle/gradle.properties
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sun Oct 21 15:06:30 MSK 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

0 comments on commit 81e5697

Please sign in to comment.