You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2016/11/27 11:57:36 UTC

svn commit: r1771572 - /sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext

Author: kwin
Date: Sun Nov 27 11:57:36 2016
New Revision: 1771572

URL: http://svn.apache.org/viewvc?rev=1771572&view=rev
Log:
Separate lists correctly

Modified:
    sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext

Modified: sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext?rev=1771572&r1=1771571&r2=1771572&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext (original)
+++ sling/site/trunk/content/documentation/the-sling-engine/servlets.mdtext Sun Nov 27 11:57:36 2016
@@ -33,7 +33,7 @@ If you are working with the default Apac
 * [OSGi DS annotations](https://osgi.org/javadoc/r6/cmpn/org/osgi/service/component/annotations/package-summary.html) (introduced with DS 1.2/OSGi 5, properly supported since [bnd 3.0](https://github.com/bndtools/bndtools/wiki/Changes-in-3.0.0), being used in [maven-bundle-plugin 3.0.0](http://felix.apache.org/documentation/subprojects/apache-felix-maven-bundle-plugin-bnd.html)) or 
 * Generic Felix SCR or Sling-specific `@SlingServlet` annotations from [Apache Felix Maven SCR Plugin](http://felix.apache.org/documentation/subprojects/apache-felix-maven-scr-plugin.html) to register your Sling servlets:
 
-
+The following examples show example code how you can register Servlets with Sling
 1. OSGi DS annotations (recommended)
 
         :::java