Skip to content

Commit

Permalink
Move plugin version management to settings.gradle and fixate `biz.a…
Browse files Browse the repository at this point in the history
…Qute.bnd.builder` plugin
  • Loading branch information
xSAVIKx committed Mar 3, 2024
1 parent 794f404 commit eb2177c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
10 changes: 4 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ plugins {
id 'pmd'

// required for: website.gradle
id 'org.ajoberstar.git-publish' version '0.3.0'
id 'org.ajoberstar.git-publish'

// deploy to maven central
id 'maven-publish'
id 'signing'
id "com.jfrog.bintray" version "1.8.4"
id "com.github.ben-manes.versions" version "0.27.0"
id "com.jfrog.bintray"
id "com.github.ben-manes.versions"
id "biz.aQute.bnd.builder"
}

javadoc {
Expand Down Expand Up @@ -165,6 +166,3 @@ apply from: 'website.gradle'
wrapper {
gradleVersion = '6.9.4'
}

// Generate OSGI bundle metadata
apply plugin: 'biz.aQute.bnd.builder'
9 changes: 9 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
pluginManagement {
plugins {
id "biz.aQute.bnd.builder" version "6.4.0"
id "org.ajoberstar.git-publish" version '0.3.0'
id "com.github.ben-manes.versions" version "0.27.0"
id "com.jfrog.bintray" version "1.8.4"
}
}

rootProject.name = 'bouncy-gpg'

0 comments on commit eb2177c

Please sign in to comment.