Skip to content

Commit

Permalink
chore(build): add idea-ext on build.gradle (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
markush81 authored Apr 26, 2023
1 parent d898b46 commit 014a2ad
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ plugins {
id 'com.github.psxpaul.execfork' version '0.2.2'
id "com.github.ben-manes.versions" version "0.46.0"
id "com.github.davidmc24.gradle.plugin.avro" version "1.6.0"

// idea
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.7"
}

group "org.akhq"
Expand Down Expand Up @@ -45,6 +48,16 @@ configurations.all {
}
}

/**********************************************************************************************************************\
* IntelliJ IDEA
**********************************************************************************************************************/
idea.project.settings {
taskTriggers {
beforeBuild generateAvroJava
beforeRebuild generateAvroJava
}
}

/**********************************************************************************************************************\
* Micronaut
**********************************************************************************************************************/
Expand Down Expand Up @@ -241,4 +254,3 @@ shadowJar {
processResources.dependsOn ":client:installFrontend"
processResources.dependsOn ":client:assembleFrontend"
processResources.dependsOn ":client:copyClientResources"

0 comments on commit 014a2ad

Please sign in to comment.