Skip to content

Commit

Permalink
Merge pull request #59 from joutvhu/v242
Browse files Browse the repository at this point in the history
Use IntelliJ Platform Gradle Plugin (2.x)
  • Loading branch information
joutvhu authored Aug 10, 2024
2 parents ada904e + 245ef8b commit 5461f7b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ Network Trash Folder
Temporary Items
.apdisk

# JetBrains plugin
.intellijPlatform

# Secrets
gradle.properties
secrets
29 changes: 20 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
plugins {
id 'org.jetbrains.intellij' version '1.17.4'
id 'org.jetbrains.intellij.platform' version '2.0.1'
id 'java'
}

group 'com.joutvhu.jetbrains'
version '1.241.1'
version '1.242.0'

sourceCompatibility = 17

repositories {
mavenCentral()

intellijPlatform {
defaultRepositories()
}
}

dependencies {
Expand All @@ -20,15 +24,22 @@ dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'

intellijPlatform {
intellijIdeaCommunity('2024.2')

bundledPlugins(
'org.jetbrains.plugins.terminal',
'org.jetbrains.plugins.yaml')

pluginVerifier()
zipSigner()
instrumentationTools()
}
}

intellij {
version = '2024.1'
plugins = [
'org.jetbrains.plugins.terminal',
'org.jetbrains.plugins.yaml'
]
buildSearchableOptions.enabled = false
buildSearchableOptions {
enabled = false
}

publishPlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5461f7b

Please sign in to comment.