Skip to content

Commit

Permalink
fix(intellij): Add support for 2024.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimon-au committed Sep 20, 2024
1 parent 62018e4 commit 430cfec
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/intellij/contextive/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/intellij/contextive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2024.2.0.2")
version.set("243-EAP-SNAPSHOT")
type.set("IU") // Target IDE Platform

plugins.set(listOf(/* Plugin Dependencies */))
Expand All @@ -42,7 +42,7 @@ tasks {

patchPluginXml {
sinceBuild.set("241")
untilBuild.set("242.*")
untilBuild.set("243.*")
}

signPlugin {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
10 changes: 10 additions & 0 deletions src/intellij/contextive/shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in

pkgs.mkShellNoCC {
packages = with pkgs; [
jdk22
];
}

0 comments on commit 430cfec

Please sign in to comment.