Skip to content

Commit

Permalink
BATM-6544 Fix where convention plugins are applied (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipocelka authored Aug 8, 2024
1 parent ee3bfcf commit f09800a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion annotations/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
}

group = projectGroup
Expand Down
1 change: 0 additions & 1 deletion batm_ssh_tunnel/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
plugins {
id("application")
id("shared-build-conventions")
}

version = "1.0.0"
Expand Down
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
plugins {
id("shared-build-conventions")
}

allprojects {
apply plugin: 'shared-build-conventions'
}
1 change: 0 additions & 1 deletion buildSrc/src/main/groovy/shared-build-conventions.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("java")
id("com.generalbytes.gradle.main")
id("shared-publish-conventions")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion currencies/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
}

group = projectGroup
Expand Down
2 changes: 1 addition & 1 deletion operators_sample_website/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
}

group = projectGroup
Expand Down
2 changes: 1 addition & 1 deletion server_extensions_api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
id("distribution")
}

Expand Down
2 changes: 1 addition & 1 deletion server_extensions_examples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
}

group = projectGroup
Expand Down
2 changes: 1 addition & 1 deletion server_extensions_extra/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
id("shared-repositories-ext-conventions")
}

Expand Down
2 changes: 1 addition & 1 deletion server_extensions_template/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("shared-build-conventions")
id("shared-publish-conventions")
}

group = projectGroup
Expand Down
1 change: 0 additions & 1 deletion server_extensions_test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
plugins {
id("application")
id("shared-build-conventions")
id("shared-repositories-ext-conventions")
}

Expand Down

0 comments on commit f09800a

Please sign in to comment.