You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2016/11/21 20:48:56 UTC

svn commit: r1770754 - in /sling/site/trunk/content: ./ documentation/bundles/ documentation/bundles/context-aware-configuration/ documentation/development/ documentation/tutorials-how-tos/

Author: sseifert
Date: Mon Nov 21 20:48:56 2016
New Revision: 1770754

URL: http://svn.apache.org/viewvc?rev=1770754&view=rev
Log:
switch to lowercase "bnd" - as used on http://bnd.bndtools.org/

Modified:
    sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration.mdtext
    sling/site/trunk/content/documentation/bundles/models.mdtext
    sling/site/trunk/content/documentation/development/version-policy.mdtext
    sling/site/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.mdtext
    sling/site/trunk/content/downloads.list
    sling/site/trunk/content/news.mdtext

Modified: sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration.mdtext?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/context-aware-configuration/context-aware-configuration.mdtext Mon Nov 21 20:48:56 2016
@@ -123,12 +123,12 @@ If you provide your own configuration an
 
     Sling-ContextAware-Configuration-Classes: x.y.z.MyConfig, x.y.z.MyConfig2
 
-To automate this you can use the Context-Aware Configuration BND plugin (see next chapter). 	
+To automate this you can use the Context-Aware Configuration bnd plugin (see next chapter). 	
 
 
-# Context-Aware Configuration BND plugin
+# Context-Aware Configuration bnd plugin
 
-A [BND](http://bnd.bndtools.org/) plugin is provided that scans the classpath of a bundle Maven project at build time and automatically generates a `Sling-ContextAware-Configuration-Classes` bundle header for all annotation classes annotated with `@Configuration`. It can be used by both [maven-bundle-plugin](http://felix.apache.org/documentation/subprojects/apache-felix-maven-bundle-plugin-bnd.html) and [bnd-maven-plugin](https://github.com/bndtools/bnd/tree/master/maven), as both use the BND library internally.
+A [bnd](http://bnd.bndtools.org/) plugin is provided that scans the classpath of a bundle Maven project at build time and automatically generates a `Sling-ContextAware-Configuration-Classes` bundle header for all annotation classes annotated with `@Configuration`. It can be used by both [maven-bundle-plugin](http://felix.apache.org/documentation/subprojects/apache-felix-maven-bundle-plugin-bnd.html) and [bnd-maven-plugin](https://github.com/bndtools/bnd/tree/master/maven), as both use the bnd library internally.
 
 Example configuration:
 

Modified: sling/site/trunk/content/documentation/bundles/models.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/models.mdtext?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/models.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/models.mdtext Mon Nov 21 20:48:56 2016
@@ -68,7 +68,7 @@ can be listed in a comma-separated list
 
 Alternatively it is possible to list all classes individually that are Sling Models classes via the `Sling-Model-Classes` header.
 
-If you use the Sling Models BND plugin all required bundle headers are generated automatically at build time (see chapter 'Registration of Sling Models classes via BND plugin' below).
+If you use the Sling Models bnd plugin all required bundle headers are generated automatically at build time (see chapter 'Registration of Sling Models classes via bnd plugin' below).
 
 # Client Code
 ## adaptTo()
@@ -479,9 +479,9 @@ through the `@Exporter` annotation's `se
 model, exported as a `java.lang.String` (via the named Exporter) and then returned to the client.
 
 
-# Registration of Sling Models classes via BND plugin (since 1.3.4)
+# Registration of Sling Models classes via bnd plugin (since 1.3.4)
 
-Since Sling Models Implementation 1.3.4 it is possible to automatically generated the necessary bundle header to register the Sling Models classes contained in the Maven bundle project by using the Sling Models BND plugin - either with maven-bundle-plugin or with bnd-maven-plugin. By default the plugin generates a `Sling-Model-Classes` header.
+Since Sling Models Implementation 1.3.4 it is possible to automatically generated the necessary bundle header to register the Sling Models classes contained in the Maven bundle project by using the Sling Models bnd plugin - either with maven-bundle-plugin or with bnd-maven-plugin. By default the plugin generates a `Sling-Model-Classes` header.
 
 Example configuration:
 

Modified: sling/site/trunk/content/documentation/development/version-policy.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/development/version-policy.mdtext?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/development/version-policy.mdtext (original)
+++ sling/site/trunk/content/documentation/development/version-policy.mdtext Mon Nov 21 20:48:56 2016
@@ -67,7 +67,7 @@ This has not been discussed at large, bu
 
 ### Future
 
-The newest versions of the BND library also support an `@Export` annotation in the `package-info.java` pseudo class file. This pseudo class is supported starting with Java 5 to take package level annotations (like the `@Export` annotation) and as a replacement of the `package-info.html` file.
+The newest versions of the bnd library also support an `@Export` annotation in the `package-info.java` pseudo class file. This pseudo class is supported starting with Java 5 to take package level annotations (like the `@Export` annotation) and as a replacement of the `package-info.html` file.
 
 Using this syntax something like the following would be easily possible:
 
@@ -80,7 +80,7 @@ Using this syntax something like the fol
     import aQute.bnd.annotation.Export;
 
 
-See [BND Versioning](http://www.aqute.biz/Bnd/Versioning) for details.
+See [bnd Versioning](http://www.aqute.biz/Bnd/Versioning) for details.
 
 
 ## Version Number Syntax
@@ -197,7 +197,7 @@ This allows for the implementation to wo
 
 ### Future
 
-Recent versions of the BND library support automatic differentiation between _use_ and _implementation_ of API and to set the import version ranges accordingly. See [BND Versioning](http://www.aqute.biz/Bnd/Versioning) for details.
+Recent versions of the bnd library support automatic differentiation between _use_ and _implementation_ of API and to set the import version ranges accordingly. See [bnd Versioning](http://www.aqute.biz/Bnd/Versioning) for details.
 
 ## References
 
@@ -205,4 +205,4 @@ Recent versions of the BND library suppo
 * [On Version Numbers](http://blog.meschberger.ch/2009/10/on-version-numbers.html) -- Blog about version numbers
 * [Version Numbering](http://wiki.eclipse.org/index.php/Version_Numbering) -- An Eclipse paper on assigning version numbers. Very good read.
 * [Semantic Versioning](http://www.osgi.org/wiki/uploads/Links/SemanticVersioning.pdf) -- An OSGi Alliance paper on semantic versioning.
-* [BND Versioning](http://www.aqute.biz/Bnd/Versioning) -- Describes how the BND library used by the Maven Bundle plugin supports package versioning
+* [bnd Versioning](http://www.aqute.biz/Bnd/Versioning) -- Describes how the bnd library used by the Maven Bundle plugin supports package versioning

Modified: sling/site/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.mdtext?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.mdtext (original)
+++ sling/site/trunk/content/documentation/tutorials-how-tos/jackrabbit-persistence.mdtext Mon Nov 21 20:48:56 2016
@@ -20,7 +20,7 @@ When you are not using the Derby persist
 
 The hardest thing to do is probably getting the JDBC driver for your database. One option is to look at the bundles provided by Spring Source in their repository at <http://www.springsource.com/repository/>.
 
-Another option is to create the bundle on your own using Peter Kriens' [BND Tool](http://www.aqute.biz/Bnd/Bnd):
+Another option is to create the bundle on your own using Peter Kriens' [bnd Tool](http://www.aqute.biz/Bnd/Bnd):
 
 1. Get the JDBC driver for your database from the driver provider
 1. Wrap the JDBC driver library into an OSGi bundle:    
@@ -38,7 +38,7 @@ Another option is to create the bundle o
             -Dpackaging=jar -Dfile=postgresql-8.4-701.jdbc3-bnd.jar
 
 
-Tony reports no success with the Spring Source bundle, whily the BND approach worked for the PostgreSQL JDBC driver.
+Tony reports no success with the Spring Source bundle, whily the bnd approach worked for the PostgreSQL JDBC driver.
 
 
 ## Replace Derby in a running Sling Instance

Modified: sling/site/trunk/content/downloads.list
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/downloads.list?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/downloads.list (original)
+++ sling/site/trunk/content/downloads.list Mon Nov 21 20:48:56 2016
@@ -50,7 +50,7 @@ Commons Testing|org.apache.sling.commons
 Commons Threads|org.apache.sling.commons.threads|3.2.6
 Content Detection Support|org.apache.sling.commons.contentdetection|1.0.2
 Context-Aware Configuration API|org.apache.sling.caconfig.api|1.0.0
-Context-Aware Configuration BND Plugin|org.apache.sling.caconfig.bnd-plugin|1.0.0
+Context-Aware Configuration bnd Plugin|org.apache.sling.caconfig.bnd-plugin|1.0.0
 Context-Aware Configuration Impl|org.apache.sling.caconfig.impl|1.1.0
 Context-Aware Configuration SPI|org.apache.sling.caconfig.spi|1.1.0
 Crankstart API|org.apache.sling.crankstart.api|1.0.0

Modified: sling/site/trunk/content/news.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/news.mdtext?rev=1770754&r1=1770753&r2=1770754&view=diff
==============================================================================
--- sling/site/trunk/content/news.mdtext (original)
+++ sling/site/trunk/content/news.mdtext Mon Nov 21 20:48:56 2016
@@ -15,7 +15,7 @@ Title: News
 * New Release: Apache Sling Scripting HTL Engine 1.0.26, Apache Sling Commons Log 5.0.0, Log WebConsole 1.0.0, Apache Sling DataSource Provider 1.0.2 and Apache Sling Log Tracer 1.0.2 (October 24th, 2016)
 * New Release: Apache Sling Servlets Resolver 2.4.6 (October 22nd, 2016)
 * New Releases: Apache Sling Scripting JSP 2.2.0, Apache Sling Engine 2.6.6, Apache Sling Scripting Java 2.1.0, Apache Sling Scripting HTL JS Use Provider 1.0.16 (October 20th, 2016)
-* New Releases: Apache Sling Context-Aware Configuration API 1.0.0, SPI 1.0.0, Impl 1.0.0, BND Plugin 1.0.0, Resource Builder 1.0.2, Testing Hamcrest 1.0.0 (October 18th, 2016)
+* New Releases: Apache Sling Context-Aware Configuration API 1.0.0, SPI 1.0.0, Impl 1.0.0, bnd Plugin 1.0.0, Resource Builder 1.0.2, Testing Hamcrest 1.0.0 (October 18th, 2016)
 * New Releases: Apache Sling Scripting Core 2.0.40, Apache Sling Scripting HTL Java Compiler 1.0.4, Apache Sling Scripting HTL Engine 1.0.24 (October 17th, 2016)
 * New Release: Apache Sling Launchpad Base 2.6.12 (October 16th, 2016)
 * New Releases: Apache Sling Event 3.4.0, Apache Sling Distributed Eventing 1.1.0, and Apache Sling Rewriter 1.2.0 (October 15th, 2016)