Skip to content

Commit

Permalink
chore(intellij): update dependencies (#4102)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Mar 13, 2024
1 parent af065b6 commit 5ea6197
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
24 changes: 13 additions & 11 deletions extensions/intellij/intellij_generator_plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.17'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
id 'org.jetbrains.intellij' version '1.16.1'
id 'org.jetbrains.kotlin.jvm' version '1.9.22'
}

group 'com.bloc'
Expand All @@ -12,29 +12,31 @@ apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'idea'

sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
sourceCompatibility = 11
targetCompatibility = 11
}

intellij {
version '2017.3'
updateSinceUntilBuild false
version = '2022.1.1'
plugins = ['java']
}

repositories {
mavenCentral()
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation "com.fleshgrinder.kotlin:case-format:0.2.0"
compileOnly("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testCompileOnly(group: 'junit', name: 'junit', version: '4.13.2')
implementation("com.fleshgrinder.kotlin:case-format:0.2.0")
}

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "11"
}

patchPluginXml {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Thu Apr 18 19:36:22 CDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class GenerateBlocDialog extends DialogWrapper {
private JComboBox<String> style;

public GenerateBlocDialog(final Listener listener) {
super(null);
super(false);
this.listener = listener;
init();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class GenerateEquatablePropsAction : AnAction() {

var propsNullable = false

override fun update(event: AnActionEvent?) {
override fun update(event: AnActionEvent) {
super.update(event)
val action = event?.presentation;
if (action != null) {
Expand Down

0 comments on commit 5ea6197

Please sign in to comment.