mirror of
https://github.com/hexedtech/codemp-intellij.git
synced 2024-11-21 14:44:49 +01:00
chore: bumped gradle plugin version
This commit is contained in:
parent
b05b1aaa3e
commit
c7b9594c11
2 changed files with 12 additions and 6 deletions
16
build.gradle
16
build.gradle
|
@ -1,6 +1,6 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '1.16.0'
|
id 'org.jetbrains.intellij.platform' version '2.0.1'
|
||||||
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
||||||
id 'com.palantir.git-version' version '3.1.0'
|
id 'com.palantir.git-version' version '3.1.0'
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,9 @@ java {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url 'https://jitpack.io' }
|
maven { url 'https://jitpack.io' }
|
||||||
|
intellijPlatform {
|
||||||
|
defaultRepositories()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -23,11 +26,14 @@ dependencies {
|
||||||
implementation files('../../lib/dist/java/build/libs/codemp-0.6.2.jar')
|
implementation files('../../lib/dist/java/build/libs/codemp-0.6.2.jar')
|
||||||
compileOnly 'org.projectlombok:lombok:1.18.34'
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
||||||
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
||||||
}
|
|
||||||
|
|
||||||
intellij {
|
intellijPlatform { // TODO: not all of these may be needed, but whatever
|
||||||
version.set('2023.3')
|
intellijIdeaCommunity('2023.3')
|
||||||
type.set('IC')
|
bundledPlugin("com.intellij.java")
|
||||||
|
pluginVerifier()
|
||||||
|
zipSigner()
|
||||||
|
instrumentationTools()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
shadowJar {
|
shadowJar {
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
Loading…
Reference in a new issue