add section for bnd plugins
diff --git a/src/main/jbake/templates/downloads.tpl b/src/main/jbake/templates/downloads.tpl
index dd6cf32..aa809ed 100644
--- a/src/main/jbake/templates/downloads.tpl
+++ b/src/main/jbake/templates/downloads.tpl
@@ -442,6 +442,32 @@
 							}
 						}
 
+						h2("bnd Plugins")
+						table(class:"table") {
+							tableHead("Artifact", "Version", "GitHub", "Binary", "Source")
+							tbody() {
+								bndPlugins.each { line ->
+									tr() {
+										def data = line.split("\\|")
+										td(data[0])
+										td(data[2])
+										def artifact = data[1]
+										def version = data[2]
+										def ghflag = data[3]
+										td(){
+											githubLink(artifact, ghflag)
+										}
+										td(){
+											downloadLink("bnd Plugin", artifact, version, ".jar")
+										}
+										td(){
+											downloadLink("Source ZIP", artifact, version, "-source-release.zip")
+										}
+									}
+								}
+							}
+						}
+
 						h2("Deprecated")
 						table(class:"table") {
 							tableHead("Artifact", "Replacement", "Version", "Binary", "Source")