[UIMA-6275] InitializableFactory is not smart enough to find a suitable classloader

- Fix JavaDoc
- ASF Jenkins Windows nodes seem to have trouble ('nohup' not found) - excluding Windows build nodes for the moment.
diff --git a/Jenkinsfile b/Jenkinsfile
index f7c905b..5bd0abc 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -16,7 +16,10 @@
 // under the License.
   
 pipeline {
-  agent any
+  agent {
+    label '!Windows'
+  }
+
   tools { 
     maven 'Maven (latest)' 
     jdk 'JDK 1.8 (latest)' 
diff --git a/uimafit-core/src/main/java/org/apache/uima/fit/internal/ClassloaderUtils.java b/uimafit-core/src/main/java/org/apache/uima/fit/internal/ClassloaderUtils.java
index 2dc3671..f8afae2 100644
--- a/uimafit-core/src/main/java/org/apache/uima/fit/internal/ClassloaderUtils.java
+++ b/uimafit-core/src/main/java/org/apache/uima/fit/internal/ClassloaderUtils.java
@@ -67,7 +67,7 @@
    * Looks up a suitable classloader in the following order:
    * <ol>
    * <li>The extension classloader of the given {@link ResourceManager}</li>
-   * <li>{@see #findClassloader()}</li>
+   * <li>See {@link #findClassloader()}</li>
    * </ol>
    *
    * @return a classloader or {@code null} if no suitable classloader could be found.
@@ -86,7 +86,7 @@
    * <ol>
    * <li>The extension classloader of the {@link ResourceManager} associated with the given
    * {@link UimaContext} (if any)</li>
-   * <li>{@see #findClassloader(ResourceManager)}</li>
+   * <li>See {@link #findClassloader(ResourceManager)}</li>
    * </ol>
    *
    * @return a classloader or {@code null} if no suitable classloader could be found.