You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2020/10/15 17:10:11 UTC

[uima-uimafit] branch UIMA-6275-Fix-JavaDoc-v2 created (now 9861d24)

This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch UIMA-6275-Fix-JavaDoc-v2
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git.


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

This branch includes the following new commits:

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

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[uima-uimafit] 01/01: [UIMA-6275] InitializableFactory is not smart enough to find a suitable classloader

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch UIMA-6275-Fix-JavaDoc-v2
in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git

commit 9861d2496e66a4a1459ad22663301016d50d6ad9
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Thu Oct 15 19:09:59 2020 +0200

    [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.
---
 Jenkinsfile                                                          | 5 ++++-
 .../src/main/java/org/apache/uima/fit/internal/ClassloaderUtils.java | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

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 @@ public final class ClassloaderUtils {
    * 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 @@ public final class ClassloaderUtils {
    * <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.