Hi all

I am writing this to Sling, Stanbol and Clerezza as it seams to affect
all three projects.

After some digging in the source of the maven-launchpad-plugin I found
the reason why the <includeDefaultBundles> and <defaultBundleList>
configuration of the prepare-package execution is getting ignored.

As it turned out the
LaunchpadPluginLifecycleParticipant#readConfiguration() does read
those parameters directly from the plugin's configuration and not from
the configuration of the prepare-package execution.

So the plugin configuration will need to look like the follows:

      <plugin>
        <groupId>org.apache.sling</groupId>
        <artifactId>maven-launchpad-plugin</artifactId>
        <executions>
          <execution>
            <id>prepare-package</id>
            <goals>
              <goal>prepare-package</goal>
            </goals>
            <configuration>
<!-- not used - define directly in the plugin configuration
              <includeDefaultBundles>false</includeDefaultBundles>
              <defaultBundleList>
                [..]
              <defaultBundleList>
 -->
              [..]
            </configuration>
          </execution>
        </executions>
        <configuration>
          <includeDefaultBundles>false</includeDefaultBundles>
          <defaultBundleList>
            [..]
          <defaultBundleList>
        </configuration>

No Idea if this is the plan or if the
LaunchpadPluginLifecycleParticipant is actually expected to read the
configuration from the prepare-package execution. In any case this can
be used as a workaround with version 2.3.2 of the plugin.

BTW: I will update all Stanbol Launchers accordingly.

best
Rupert

On Mon, Oct 19, 2015 at 5:48 PM, Reto Gmür <r...@apache.org> wrote:
> On Mon, Oct 19, 2015 at 5:41 PM, Reto Gmür <r...@apache.org> wrote:
>
>>
>>
>> On Mon, Oct 19, 2015 at 5:33 PM, Robert Munteanu <romb...@apache.org>
>> wrote:
>>
>>> On Mon, 2015-10-19 at 17:30 +0200, Reto Gmür wrote:
>>> > Thanks Robert for the quick reply.
>>> >
>>> > Still confused, why do project that use released sling plugins and
>>> > depend
>>> > on released sling dependencies no longer compile? I'd expect this
>>> > kind of
>>> > things to happen only when one depends on SNAPSHOT versions.
>>>
>>> Good question. My guess is that it's due to a (unfortunate) default ,
>>> see
>>>
>>>   https://sling.apache.org/documentation/development/maven-launchpad-pl
>>> ugin.html#general-configuration
>>> <https://sling.apache.org/documentation/development/maven-launchpad-plugin.html#general-configuration>
>>>
>>> where the first bullet includes:
>>>
>>> If includeDefaultBundles is true (the default), the default bundle list
>>> is loaded. By default, this is
>>> org.apache.sling.launchpad:org.apache.sling.launchpad:RELEASE:xml:bundl
>>> elist, but can be overridden by setting the defaultBundleList plugin
>>> parameter.
>>>
>>> Can you try setting the defaultBundleList parameter to 7 ?
>>>
>>
>> includeDefaultBundles is set to false in my configuration.
>>
>>
>> Setting 
>> <defaultBundleList>org.apache.sling.launchpad:org.apache.sling.launchpad:7:xml:bundlelist</defaultBundleList>
>> of <defaultBundleList>7</defaultBundleList> has no effect.
>>
>
> No luck with
>
> <defaultBundleList>
>
> <groupId>org.apache.sling.launchpad</groupId>
>
> <artifactId>org.apache.sling.launchpad</artifactId>
>                                 <version>7</version>
>                             </defaultBundleList>
>
> either. :(
>
>>
>> Cheers,
>> Reto
>>
>>
>>>
>>> If this works I will fix the maven plugin to only look for the Sling
>>> launchpad if it really has to.
>>>
>>> Thanks,
>>>
>>> Robert
>>>
>>> >
>>> > Cheers,
>>> > Reto
>>> >
>>> > On Mon, Oct 19, 2015 at 5:26 PM, Robert Munteanu <romb...@apache.org>
>>> > wrote:
>>> >
>>> > > Hi Reto,
>>> > >
>>> > > On Mon, 2015-10-19 at 17:22 +0200, Reto Gmür wrote:
>>> > > > Hi Sling devs,
>>> > > >
>>> > > > The clerezza build fails too.
>>> > > >
>>> > > > I don't see any direct dependency
>>> > > > to org.apache.sling:org.apache.sling.launchpad:xml:bundlelist:8
>>> > > > (dependency:tree is failing too). Nothing was changed to the pom.
>>> > > >
>>> > > > Any idea what's happening?
>>> > >
>>> > > Sling has moved from the bundle list ( XML ) format to the sling
>>> > > provisioning model ( docs at [1] , updated pom at [2], model
>>> > > definition
>>> > > at [3] ).
>>> > >
>>> > > By the looks of it, if you want to consume Sling 8 you would need
>>> > > to
>>> > > move the the provisioning model as well.
>>> > >
>>> > > Robert
>>> > >
>>> > > [1]: http://sling.apache.org/documentation/development/slingstart.h
>>> > > tml
>>> > > [2]: http://svn.apache.org/repos/asf/sling/trunk/launchpad/builder/
>>> > > pom.
>>> > > xml
>>> > > [3]: http://svn.apache.org/repos/asf/sling/trunk/launchpad/builder/
>>> > > src/
>>> > > main/provisioning/
>>> > >
>>> > > >
>>> > > > Cheers,
>>> > > > Reto
>>> > > >
>>> > > >
>>> > > > ---------- Forwarded message ----------
>>> > > > From: Rafa Haro <rharoapa...@gmail.com>
>>> > > > Date: Mon, Oct 19, 2015 at 4:17 PM
>>> > > > Subject: Re: Sling 8 release breaks Stanbol Builds (was Build
>>> > > > failed
>>> > > > in
>>> > > > Jenkins: stanbol-0.12 #92)
>>> > > > To: dev@stanbol.apache.org
>>> > > > Cc: dev@stanbol.apache.org
>>> > > >
>>> > > >
>>> > > > The artifacts were updated last October 13th. So probably there
>>> > > > has
>>> > > > been an
>>> > > > undetected error in the artifacts deployment. We should probably
>>> > > > open
>>> > > > an
>>> > > > issue for this at Sling’s JIRA
>>> > > >
>>> > > > On Mon, Oct 19, 2015 at 4:15 PM, Rafa Haro <rharoapa...@gmail.com
>>> > > > >
>>> > > > wrote:
>>> > > >
>>> > > > > Nop, The bundlelist is missing
>>> > > > > On Mon, Oct 19, 2015 at 4:14 PM, Rafa Haro <rharoapache@gmail.c
>>> > > > > om>
>>> > > > > wrote:
>>> > > > > > The artifact anyway seems to be there:
>>> > > > > >
>>> > > > https://repo.maven.apache.org/maven2/org/apache/sling/org.apache.
>>> > > > slin
>>> > > > g.launchpad/8/
>>> > > > > > On Mon, Oct 19, 2015 at 3:56 PM, Rafa Haro <rharoapache@gmail
>>> > > > > > .com
>>> > > > > > > wrote:
>>> > > > > > > Hi Rupert,
>>> > > > > > > I’m suffering this issue too, in my case not working
>>> > > > > > > directly
>>> > > > > > > with the
>>> > > > trunk but with a recent revision of the project. I have been
>>> > > > building
>>> > > > my
>>> > > > own launchers with this revision for a couple of months now and
>>> > > > never
>>> > > > had
>>> > > > this problem that we are having today.
>>> > > > > > > Cheers,
>>> > > > > > > Rafa
>>> > > > > > > On Mon, Oct 19, 2015 at 3:47 PM, Rupert Westenthaler
>>> > > > > > > <rupert.westentha...@gmail.com> wrote:
>>> > > > > > > > Hi all,
>>> > > > > > > > looks like the Sling 8 release has broken Stanbol Builds.
>>> > > > > > > >     [ERROR] Failed to execute goal on project
>>> > > > > > > > org.apache.stanbol.launchers.full: Could not resolve
>>> > > > > > > > dependencies for
>>> > > > > > > > project
>>> > > > org.apache.stanbol:org.apache.stanbol.launchers.full:jar:0.12.1-
>>> > > > SNAPSHOT:
>>> > > > > > > > Could not find artifact
>>> > > > > > > > org.apache.sling:org.apache.sling.launchpad:xml:bundlelis
>>> > > > > > > > t:8
>>> > > > > > > > in
>>> > > > > > > > central (http://repo1.maven.org/maven2) -> [Help 1]
>>> > > > > > > > I have no Idea why the maven-launchpad-plugin tries to
>>> > > > > > > > get
>>> > > > > > > > the
>>> > > > > > > > `org.apache.sling:org.apache.sling.launchpad:xml:bundleli
>>> > > > > > > > st:8
>>> > > > > > > > `.
>>> > > > > > > > Based on the documentation on [1] the referenced file
>>> > > > > > > > would
>>> > > > > > > > not even
>>> > > > > > > > get used as stanbol uses
>>> > > > > > > >     <includeDefaultBundles>false</includeDefaultBundles>
>>> > > > > > > > I also tried to set the <defaultBundleList> property but
>>> > > > > > > > with
>>> > > > > > > > no
>>> > > > success.
>>> > > > > > > > I also found the sling-start-plugin [2]. Looks a bit like
>>> > > > > > > > a
>>> > > > > > > > replacement for the maven sling plugin ...
>>> > > > > > > > Would be nice if someone could provide some more
>>> > > > > > > > information
>>> > > > > > > > on this.
>>> > > > > > > > Otherwise I will try to ask over on the sling lists
>>> > > > > > > > and/or do
>>> > > > > > > > some
>>> > > > > > > > additional digging.
>>> > > > > > > > best
>>> > > > > > > > Rupert
>>> > > > > > > > [1]
>>> > > > https://sling.apache.org/documentation/development/maven-launchpa
>>> > > > d-pl
>>> > > > ugin.html#general-configuration
>>> > > > > > > > [2] https://sling.apache.org/documentation/development/sl
>>> > > > > > > > ings
>>> > > > > > > > tart.html
>>> > > > > > > > ---------- Forwarded message ----------
>>> > > > > > > > From: Apache Jenkins Server <jenk...@builds.apache.org>
>>> > > > > > > > Date: Mon, Oct 19, 2015 at 3:03 PM
>>> > > > > > > > Subject: Build failed in Jenkins: stanbol-0.12 #92
>>> > > > > > > > To: dev@stanbol.apache.org, rwes...@apache.org
>>> > > > > > > > See <https://builds.apache.org/job/stanbol-0.12/92/change
>>> > > > > > > > s>
>>> > > > > > > > Changes:
>>> > > > > > > > [rwesten] minor: reverted change in the pom.xml of the
>>> > > > > > > > integration-test module from the last commit (r1709397)
>>> > > > > > > > [rwesten] fix for STANBOL-1443: The FastLRUCacheManager
>>> > > > > > > > is
>>> > > > > > > > now thread
>>> > > > > > > > save; Minor: The FST Linking engine does no longer force
>>> > > > > > > > a
>>> > > > > > > > new
>>> > > > > > > > Searcher to be opened during initialization; The Enhancer
>>> > > > > > > > Stress Test
>>> > > > > > > > Tool does no longer use Assert.assert*(..) during
>>> > > > > > > > response
>>> > > > > > > > processing.
>>> > > > > > > > This caused responses not to be marked as success or
>>> > > > > > > > failed.
>>> > > > > > > > Now
>>> > > > > > > > exceptions are thrown instead.
>>> > > > > > > > ------------------------------------------
>>> > > > > > > > [...truncated 36460 lines...]
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/instal
>>> > > > l/po
>>> > > > m.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.install/0.12.1
>>> > > > -
>>> > > > SNAPSHOT/org.apache.stanbol.commons.solr.install-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/instal
>>> > > > l/ta
>>> > > > rget/org.apache.stanbol.commons.solr.install-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.install/0.12.1
>>> > > > -
>>> > > > 20151019.122302-35/org.apache.stanbol.commons.solr.install-
>>> > > > 0.12.1-
>>> > > > 20151019.122302-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/instal
>>> > > > l/ta
>>> > > > rget/org.apache.stanbol.commons.solr.install-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.install/0.12.1
>>> > > > -
>>> > > > 20151019.122302-35/org.apache.stanbol.commons.solr.install-
>>> > > > 0.12.1-
>>> > > > 20151019.122302-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Solr
>>> > > > > > > > Installer
>>> > > > > > > > #91 to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter
>>> > > > > > > > /cor
>>> > > > > > > > e/pom.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.core/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.cmsadapter.core-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter/core/tar
>>> > > > get/
>>> > > > org.apache.stanbol.cmsadapter.core-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.core/0.12.1-
>>> > > > 20151019.125700-32/org.apache.stanbol.cmsadapter.core-0.12.1-
>>> > > > 20151019.125700-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter/core/tar
>>> > > > get/
>>> > > > org.apache.stanbol.cmsadapter.core-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.core/0.12.1-
>>> > > > 20151019.125700-32/org.apache.stanbol.cmsadapter.core-0.12.1-
>>> > > > 20151019.125700-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/launchers/
>>> > > > > > > > full
>>> > > > > > > > /pom.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.full/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.full-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/search/p
>>> > > > om.x
>>> > > > ml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.search.reactor/0
>>> > > > .12.
>>> > > > 1-SNAPSHOT/org.apache.stanbol.contenthub.search.reactor-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/rules/adap
>>> > > > > > > > ters
>>> > > > > > > > /pom.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.reactor/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.rules.adapters.reactor-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/se
>>> > > > rvic
>>> > > > esapi/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.servicesapi/0.12.1
>>> > > > -
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.servicesapi-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/se
>>> > > > rvic
>>> > > > esapi/target/org.apache.stanbol.enhancer.servicesapi-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.servicesapi/0.12.1
>>> > > > -
>>> > > > 20151019.123934-32/org.apache.stanbol.enhancer.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.123934-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/se
>>> > > > rvic
>>> > > > esapi/target/org.apache.stanbol.enhancer.servicesapi-0.12.1-
>>> > > > SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.servicesapi/0.12.1
>>> > > > -
>>> > > > 20151019.123934-32/org.apache.stanbol.enhancer.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.123934-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > nnlp/opennlp-chunker/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opennlp.ch
>>> > > > unke
>>> > > > r/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.opennlp.chunker-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > nnlp/opennlp-
>>> > > > chunker/target/org.apache.stanbol.enhancer.engines.opennlp.chunke
>>> > > > r-
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opennlp.ch
>>> > > > unke
>>> > > > r/0.12.1-20151019.124718-
>>> > > > 32/org.apache.stanbol.enhancer.engines.opennlp.chunker-0.12.1-
>>> > > > 20151019.124718-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > nnlp/opennlp-
>>> > > > chunker/target/org.apache.stanbol.enhancer.engines.opennlp.chunke
>>> > > > r-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opennlp.ch
>>> > > > unke
>>> > > > r/0.12.1-20151019.124718-
>>> > > > 32/org.apache.stanbol.enhancer.engines.opennlp.chunker-0.12.1-
>>> > > > 20151019.124718-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter/services
>>> > > > api/
>>> > > > pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.servicesapi/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.cmsadapter.servicesapi-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter/services
>>> > > > api/
>>> > > > target/org.apache.stanbol.cmsadapter.servicesapi-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.servicesapi/0.12
>>> > > > .1-
>>> > > > 20151019.125647-32/org.apache.stanbol.cmsadapter.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.125647-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/cmsadapter/services
>>> > > > api/
>>> > > > target/org.apache.stanbol.cmsadapter.servicesapi-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.cmsadapter.servicesapi/0.12
>>> > > > .1-
>>> > > > 20151019.125647-32/org.apache.stanbol.cmsadapter.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.125647-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ref
>>> > > > actor/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.refactor/0
>>> > > > .12.
>>> > > > 1-SNAPSHOT/org.apache.stanbol.enhancer.engines.refactor-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ref
>>> > > > actor/target/org.apache.stanbol.enhancer.engines.refactor-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.refactor/0
>>> > > > .12.
>>> > > > 1-20151019.124557-
>>> > > > 32/org.apache.stanbol.enhancer.engines.refactor-
>>> > > > 0.12.1-20151019.124557-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ref
>>> > > > actor/target/org.apache.stanbol.enhancer.engines.refactor-0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.refactor/0
>>> > > > .12.
>>> > > > 1-20151019.124557-
>>> > > > 32/org.apache.stanbol.enhancer.engines.refactor-
>>> > > > 0.12.1-20151019.124557-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/chain/list
>>> > > > /pom
>>> > > > .xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.chain.list/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.chain.list-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/chain/list
>>> > > > /tar
>>> > > > get/org.apache.stanbol.enhancer.chain.list-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.chain.list/0.12.1-
>>> > > > 20151019.124159-32/org.apache.stanbol.enhancer.chain.list-0.12.1-
>>> > > > 20151019.124159-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/chain/list
>>> > > > /tar
>>> > > > get/org.apache.stanbol.enhancer.chain.list-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.chain.list/0.12.1-
>>> > > > 20151019.124159-32/org.apache.stanbol.enhancer.chain.list-0.12.1-
>>> > > > 20151019.124159-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > free
>>> > > > base/dependency-reduced-pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.freebase
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.entityhub.indexing.freebase-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > free
>>> > > > base/target/org.apache.stanbol.entityhub.indexing.freebase-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.freebase
>>> > > > /0.1
>>> > > > 2.1-20151019.123544-
>>> > > > 33/org.apache.stanbol.entityhub.indexing.freebase-0.12.1-
>>> > > > 20151019.123544-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > free
>>> > > > base/target/org.apache.stanbol.entityhub.indexing.freebase-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.freebase
>>> > > > /0.1
>>> > > > 2.1-20151019.123544-
>>> > > > 33/org.apache.stanbol.entityhub.indexing.freebase-0.12.1-
>>> > > > 20151019.123544-33-sources.jar
>>> > > > > > > > Compressed 69.82 MB of artifacts by 36.6% relative to #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/web
>>> > > > /pom
>>> > > > .xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.web/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.ontologymanager.web-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/web
>>> > > > /tar
>>> > > > get/org.apache.stanbol.ontologymanager.web-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.web/0.12.1-
>>> > > > 20151019.123735-33/org.apache.stanbol.ontologymanager.web-0.12.1-
>>> > > > 20151019.123735-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/web
>>> > > > /tar
>>> > > > get/org.apache.stanbol.ontologymanager.web-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.web/0.12.1-
>>> > > > 20151019.123735-33/org.apache.stanbol.ontologymanager.web-0.12.1-
>>> > > > 20151019.123735-33-sources.jar
>>> > > > > > > > Compressed 340.61 KB of artifacts by 18.8% relative to
>>> > > > > > > > #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/defaults/p
>>> > > > om.x
>>> > > > ml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.defaults/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.defaults-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/defaults/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.enhancer.defaults-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.defaults/0.12.1-
>>> > > > 20151019.124306-32/org.apache.stanbol.enhancer.defaults-0.12.1-
>>> > > > 20151019.124306-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/defaults/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.enhancer.defaults-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.defaults/0.12.1-
>>> > > > 20151019.124306-32/org.apache.stanbol.enhancer.defaults-0.12.1-
>>> > > > 20151019.124306-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/reasoners/
>>> > > > > > > > web/
>>> > > > > > > > pom.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.web/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.reasoners.web-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/web/targe
>>> > > > t/or
>>> > > > g.apache.stanbol.reasoners.web-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.web/0.12.1-
>>> > > > 20151019.125839-32/org.apache.stanbol.reasoners.web-0.12.1-
>>> > > > 20151019.125839-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/web/targe
>>> > > > t/or
>>> > > > g.apache.stanbol.reasoners.web-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.web/0.12.1-
>>> > > > 20151019.125839-32/org.apache.stanbol.reasoners.web-0.12.1-
>>> > > > 20151019.125839-32-sources.jar
>>> > > > > > > > Compressed 303.31 KB of artifacts by 21.1% relative to
>>> > > > > > > > #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/sou
>>> > > > rces
>>> > > > /owlapi/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.sources.owl
>>> > > > api/
>>> > > > 0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.ontologymanager.sources.owlapi-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/sou
>>> > > > rces
>>> > > > /owlapi/target/org.apache.stanbol.ontologymanager.sources.owlapi-
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.sources.owl
>>> > > > api/
>>> > > > 0.12.1-20151019.123649-
>>> > > > 33/org.apache.stanbol.ontologymanager.sources.owlapi-0.12.1-
>>> > > > 20151019.123649-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/sou
>>> > > > rces
>>> > > > /owlapi/target/org.apache.stanbol.ontologymanager.sources.owlapi-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.sources.owl
>>> > > > api/
>>> > > > 0.12.1-20151019.123649-
>>> > > > 33/org.apache.stanbol.ontologymanager.sources.owlapi-0.12.1-
>>> > > > 20151019.123649-33-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > ityhublinking/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entityhubl
>>> > > > inki
>>> > > > ng/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.entityhublinking-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > ityhublinking/target/org.apache.stanbol.enhancer.engines.entityhu
>>> > > > blin
>>> > > > king-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entityhubl
>>> > > > inki
>>> > > > ng/0.12.1-20151019.124955-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entityhublinking-0.12.1-
>>> > > > 20151019.124955-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > ityhublinking/target/org.apache.stanbol.enhancer.engines.entityhu
>>> > > > blin
>>> > > > king-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entityhubl
>>> > > > inki
>>> > > > ng/0.12.1-20151019.124955-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entityhublinking-0.12.1-
>>> > > > 20151019.124955-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/development/archety
>>> > > > pes/
>>> > > > enhancement-engine/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/enhancer-engine-archetype/0.12.1-
>>> > > > SNAPSHOT/enhancer-engine-archetype-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/services
>>> > > > api/
>>> > > > pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.servicesapi/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.contenthub.servicesapi-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/services
>>> > > > api/
>>> > > > target/org.apache.stanbol.contenthub.servicesapi-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.servicesapi/0.12
>>> > > > .1-
>>> > > > 20151019.124320-32/org.apache.stanbol.contenthub.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.124320-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/services
>>> > > > api/
>>> > > > target/org.apache.stanbol.contenthub.servicesapi-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.servicesapi/0.12
>>> > > > .1-
>>> > > > 20151019.124320-32/org.apache.stanbol.contenthub.servicesapi-
>>> > > > 0.12.1-
>>> > > > 20151019.124320-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/p
>>> > > > om.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/apache-stanbol-bundlelists/0.12.1-
>>> > > > SNAPSHOT/apache-
>>> > > > stanbol-bundlelists-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/defaul
>>> > > > ts/p
>>> > > > om.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.defaults/0.12.
>>> > > > 1-
>>> > > > SNAPSHOT/org.apache.stanbol.commons.solr.defaults-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/defaul
>>> > > > ts/t
>>> > > > arget/org.apache.stanbol.commons.solr.defaults-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.defaults/0.12.
>>> > > > 1-
>>> > > > 20151019.122310-35/org.apache.stanbol.commons.solr.defaults-
>>> > > > 0.12.1-
>>> > > > 20151019.122310-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/defaul
>>> > > > ts/t
>>> > > > arget/org.apache.stanbol.commons.solr.defaults-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.defaults/0.12.
>>> > > > 1-
>>> > > > 20151019.122310-35/org.apache.stanbol.commons.solr.defaults-
>>> > > > 0.12.1-
>>> > > > 20151019.122310-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Solr
>>> > > > > > > > Defauts
>>> > > > > > > > #91 to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /luc
>>> > > > enefstlinking/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.lucenefstl
>>> > > > inki
>>> > > > ng/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.lucenefstlinking-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /luc
>>> > > > enefstlinking/target/org.apache.stanbol.enhancer.engines.lucenefs
>>> > > > tlin
>>> > > > king-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.lucenefstl
>>> > > > inki
>>> > > > ng/0.12.1-20151019.125120-
>>> > > > 32/org.apache.stanbol.enhancer.engines.lucenefstlinking-0.12.1-
>>> > > > 20151019.125120-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /luc
>>> > > > enefstlinking/target/org.apache.stanbol.enhancer.engines.lucenefs
>>> > > > tlin
>>> > > > king-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.lucenefstl
>>> > > > inki
>>> > > > ng/0.12.1-20151019.125120-
>>> > > > 32/org.apache.stanbol.enhancer.engines.lucenefstlinking-0.12.1-
>>> > > > 20151019.125120-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/solr
>>> > > > /pom
>>> > > > .xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.solr/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.entityhub.yard.solr-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/solr
>>> > > > /tar
>>> > > > get/org.apache.stanbol.entityhub.yard.solr-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.solr/0.12.1-
>>> > > > 20151019.123106-34/org.apache.stanbol.entityhub.yard.solr-0.12.1-
>>> > > > 20151019.123106-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/solr
>>> > > > /tar
>>> > > > get/org.apache.stanbol.entityhub.yard.solr-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.solr/0.12.1-
>>> > > > 20151019.123106-34/org.apache.stanbol.entityhub.yard.solr-0.12.1-
>>> > > > 20151019.123106-34-sources.jar
>>> > > > > > > > Compressed 1.28 MB of artifacts by 53.7% relative to #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/labeltokenizer-kuromoji/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > labeltokenizer.kuromoji/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.entitylinking.labelt
>>> > > > oken
>>> > > > izer.kuromoji-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/labeltokenizer-
>>> > > > kuromoji/target/org.apache.stanbol.enhancer.engines.entitylinking
>>> > > > .lab
>>> > > > eltokenizer.kuromoji-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > labeltokenizer.kuromoji/0.12.1-20151019.124945-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitylinking.labeltokeniz
>>> > > > er.k
>>> > > > uromoji-0.12.1-20151019.124945-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/labeltokenizer-
>>> > > > kuromoji/target/org.apache.stanbol.enhancer.engines.entitylinking
>>> > > > .lab
>>> > > > eltokenizer.kuromoji-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > labeltokenizer.kuromoji/0.12.1-20151019.124945-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitylinking.labeltokeniz
>>> > > > er.k
>>> > > > uromoji-0.12.1-20151019.124945-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/s
>>> > > > ecurity/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.secur
>>> > > > ity/
>>> > > > 0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.bundlelists.security-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/s
>>> > > > ecurity/target/list.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.secur
>>> > > > ity/
>>> > > > 0.12.1-20151019.130010-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.security-0.12.1-
>>> > > > 20151019.130010-32.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/s
>>> > > > ecurity/target/org.apache.stanbol.launchers.bundlelists.security-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.secur
>>> > > > ity/
>>> > > > 0.12.1-20151019.130010-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.security-0.12.1-
>>> > > > 20151019.130010-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/s
>>> > > > ecurity/target/bundleList.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.secur
>>> > > > ity/
>>> > > > 0.12.1-20151019.130010-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.security-0.12.1-
>>> > > > 20151019.130010-32-bundlelist.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimaremote/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimaremote/
>>> > > > 0.12
>>> > > > .1-SNAPSHOT/org.apache.stanbol.enhancer.engine.uimaremote-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimaremote/target/org.apache.stanbol.enhancer.engine.uimaremote
>>> > > > -
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimaremote/
>>> > > > 0.12
>>> > > > .1-20151019.125401-
>>> > > > 32/org.apache.stanbol.enhancer.engine.uimaremote-
>>> > > > 0.12.1-20151019.125401-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimaremote/target/org.apache.stanbol.enhancer.engine.uimaremote
>>> > > > -
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimaremote/
>>> > > > 0.12
>>> > > > .1-20151019.125401-
>>> > > > 32/org.apache.stanbol.enhancer.engine.uimaremote-
>>> > > > 0.12.1-20151019.125401-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/gen
>>> > > > eric
>>> > > > /servicesapi/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.servicesapi
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.ontologymanager.servicesapi-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/gen
>>> > > > eric
>>> > > > /servicesapi/target/org.apache.stanbol.ontologymanager.servicesap
>>> > > > i-
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.servicesapi
>>> > > > /0.1
>>> > > > 2.1-20151019.123626-
>>> > > > 33/org.apache.stanbol.ontologymanager.servicesapi-0.12.1-
>>> > > > 20151019.123626-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/gen
>>> > > > eric
>>> > > > /servicesapi/target/org.apache.stanbol.ontologymanager.servicesap
>>> > > > i-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.servicesapi
>>> > > > /0.1
>>> > > > 2.1-20151019.123626-
>>> > > > 33/org.apache.stanbol.ontologymanager.servicesapi-0.12.1-
>>> > > > 20151019.123626-33-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/abst
>>> > > > ract
>>> > > > /pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.abstract/0.1
>>> > > > 2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.rules.adapters.abstract-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/abst
>>> > > > ract
>>> > > > /target/org.apache.stanbol.rules.adapters.abstract-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.abstract/0.1
>>> > > > 2.1-
>>> > > > 20151019.123808-33/org.apache.stanbol.rules.adapters.abstract-
>>> > > > 0.12.1-
>>> > > > 20151019.123808-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/abst
>>> > > > ract
>>> > > > /target/org.apache.stanbol.rules.adapters.abstract-0.12.1-
>>> > > > SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.abstract/0.1
>>> > > > 2.1-
>>> > > > 20151019.123808-33/org.apache.stanbol.rules.adapters.abstract-
>>> > > > 0.12.1-
>>> > > > 20151019.123808-33-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/apache-stanbol-enhancement-engines-
>>> > > > entitylinking/0.12.1-SNAPSHOT/apache-stanbol-enhancement-engines-
>>> > > > entitylinking-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/marmotta/ki
>>> > > > wi/p
>>> > > > om.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.marmotta.kiwi/0.12.
>>> > > > 1-
>>> > > > SNAPSHOT/org.apache.stanbol.commons.marmotta.kiwi-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/marmotta/ki
>>> > > > wi/t
>>> > > > arget/org.apache.stanbol.commons.marmotta.kiwi-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.marmotta.kiwi/0.12.
>>> > > > 1-
>>> > > > 20151019.122406-35/org.apache.stanbol.commons.marmotta.kiwi-
>>> > > > 0.12.1-
>>> > > > 20151019.122406-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/marmotta/ki
>>> > > > wi/t
>>> > > > arget/org.apache.stanbol.commons.marmotta.kiwi-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.marmotta.kiwi/0.12.
>>> > > > 1-
>>> > > > 20151019.122406-35/org.apache.stanbol.commons.marmotta.kiwi-
>>> > > > 0.12.1-
>>> > > > 20151019.122406-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Marmotta Kiwi Repository
>>> > > > > > > > Service #91
>>> > > > > > > > to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/benchmark/
>>> > > > pom.
>>> > > > xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.benchmark/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.benchmark-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/benchmark/
>>> > > > targ
>>> > > > et/org.apache.stanbol.enhancer.benchmark-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.benchmark/0.12.1-
>>> > > > 20151019.124259-32/org.apache.stanbol.enhancer.benchmark-0.12.1-
>>> > > > 20151019.124259-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/benchmark/
>>> > > > targ
>>> > > > et/org.apache.stanbol.enhancer.benchmark-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.benchmark/0.12.1-
>>> > > > 20151019.124259-32/org.apache.stanbol.enhancer.benchmark-0.12.1-
>>> > > > 20151019.124259-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > geon
>>> > > > ames/dependency-reduced-pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.geonames
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.entityhub.indexing.geonames-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > geon
>>> > > > ames/target/org.apache.stanbol.entityhub.indexing.geonames-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.geonames
>>> > > > /0.1
>>> > > > 2.1-20151019.123355-
>>> > > > 34/org.apache.stanbol.entityhub.indexing.geonames-0.12.1-
>>> > > > 20151019.123355-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > geon
>>> > > > ames/target/org.apache.stanbol.entityhub.indexing.geonames-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.geonames
>>> > > > /0.1
>>> > > > 2.1-20151019.123355-
>>> > > > 34/org.apache.stanbol.entityhub.indexing.geonames-0.12.1-
>>> > > > 20151019.123355-34-sources.jar
>>> > > > > > > > Compressed 54.12 MB of artifacts by 32.5% relative to #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > ncalais/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opencalais
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.enhancer.engines.opencalais-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > ncalais/target/org.apache.stanbol.enhancer.engines.opencalais-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opencalais
>>> > > > /0.1
>>> > > > 2.1-20151019.125619-
>>> > > > 32/org.apache.stanbol.enhancer.engines.opencalais-0.12.1-
>>> > > > 20151019.125619-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ope
>>> > > > ncalais/target/org.apache.stanbol.enhancer.engines.opencalais-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.opencalais
>>> > > > /0.1
>>> > > > 2.1-20151019.125619-
>>> > > > 32/org.apache.stanbol.enhancer.engines.opencalais-0.12.1-
>>> > > > 20151019.125619-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/manager/p
>>> > > > om.x
>>> > > > ml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.manager/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.reasoners.manager-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/manager/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.reasoners.manager-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.manager/0.12.1-
>>> > > > 20151019.125801-32/org.apache.stanbol.reasoners.manager-0.12.1-
>>> > > > 20151019.125801-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/manager/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.reasoners.manager-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.manager/0.12.1-
>>> > > > 20151019.125801-32/org.apache.stanbol.reasoners.manager-0.12.1-
>>> > > > 20151019.125801-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itycomention/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitycome
>>> > > > ntio
>>> > > > n/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.entitycomention-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itycomention/target/org.apache.stanbol.enhancer.engines.entitycom
>>> > > > enti
>>> > > > on-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitycome
>>> > > > ntio
>>> > > > n/0.12.1-20151019.125513-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitycomention-0.12.1-
>>> > > > 20151019.125513-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itycomention/target/org.apache.stanbol.enhancer.engines.entitycom
>>> > > > enti
>>> > > > on-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitycome
>>> > > > ntio
>>> > > > n/0.12.1-20151019.125513-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitycomention-0.12.1-
>>> > > > 20151019.125513-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/ldpathtempl
>>> > > > ate/
>>> > > > pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.ldpathtemplate/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.commons.ldpathtemplate-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/ldpathtempl
>>> > > > ate/
>>> > > > target/org.apache.stanbol.commons.ldpathtemplate-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.ldpathtemplate/0.12
>>> > > > .1-
>>> > > > 20151019.122100-35/org.apache.stanbol.commons.ldpathtemplate-
>>> > > > 0.12.1-
>>> > > > 20151019.122100-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/ldpathtempl
>>> > > > ate/
>>> > > > target/org.apache.stanbol.commons.ldpathtemplate-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.ldpathtemplate/0.12
>>> > > > .1-
>>> > > > 20151019.122100-35/org.apache.stanbol.commons.ldpathtemplate-
>>> > > > 0.12.1-
>>> > > > 20151019.122100-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > LDPath
>>> > > > > > > > Template Rendering #91 to compare, so performing full
>>> > > > > > > > copy of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/ontologyma
>>> > > > > > > > nage
>>> > > > > > > > r/pom.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.reactor/0.1
>>> > > > 2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.ontologymanager.reactor-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimatotriples/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimatotripl
>>> > > > es/0
>>> > > > .12.1-SNAPSHOT/org.apache.stanbol.enhancer.engine.uimatotriples-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimatotriples/target/org.apache.stanbol.enhancer.engine.uimatot
>>> > > > ripl
>>> > > > es-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimatotripl
>>> > > > es/0
>>> > > > .12.1-20151019.125412-
>>> > > > 32/org.apache.stanbol.enhancer.engine.uimatotriples-0.12.1-
>>> > > > 20151019.125412-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /uim
>>> > > > a/uimatotriples/target/org.apache.stanbol.enhancer.engine.uimatot
>>> > > > ripl
>>> > > > es-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.uimatotripl
>>> > > > es/0
>>> > > > .12.1-20151019.125412-
>>> > > > 32/org.apache.stanbol.enhancer.engine.uimatotriples-0.12.1-
>>> > > > 20151019.125412-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e/po
>>> > > > m.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable/0.12.1
>>> > > > -
>>> > > > SNAPSHOT/org.apache.stanbol.commons.web.viewable-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e/ta
>>> > > > rget/org.apache.stanbol.commons.web.viewable-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable/0.12.1
>>> > > > -
>>> > > > 20151019.121954-35/org.apache.stanbol.commons.web.viewable-
>>> > > > 0.12.1-
>>> > > > 20151019.121954-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e/ta
>>> > > > rget/org.apache.stanbol.commons.web.viewable-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable/0.12.1
>>> > > > -
>>> > > > 20151019.121954-35/org.apache.stanbol.commons.web.viewable-
>>> > > > 0.12.1-
>>> > > > 20151019.121954-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Web
>>> > > > > > > > Viewable
>>> > > > > > > > #91 to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/freemarker/
>>> > > > pom.
>>> > > > xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.freemarker/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.commons.freemarker-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/freemarker/
>>> > > > targ
>>> > > > et/org.apache.stanbol.commons.freemarker-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.freemarker/0.12.1-
>>> > > > 20151019.122038-35/org.apache.stanbol.commons.freemarker-0.12.1-
>>> > > > 20151019.122038-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/freemarker/
>>> > > > targ
>>> > > > et/org.apache.stanbol.commons.freemarker-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.freemarker/0.12.1-
>>> > > > 20151019.122038-35/org.apache.stanbol.commons.freemarker-0.12.1-
>>> > > > 20151019.122038-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Freemarker
>>> > > > > > > > Utilities #91 to compare, so performing full copy of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/contenthub
>>> > > > > > > > /pom
>>> > > > > > > > .xml> to
>>> > > > > > > >
>>> > > > org.apache.stanbol/apache-stanbol-contenthub/0.12.1-
>>> > > > SNAPSHOT/apache-
>>> > > > stanbol-contenthub-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /dis
>>> > > > ambiguation-mlt/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.disambiguat
>>> > > > ion.
>>> > > > mlt/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engine.disambiguation.mlt-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /dis
>>> > > > ambiguation-
>>> > > > mlt/target/org.apache.stanbol.enhancer.engine.disambiguation.mlt-
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.disambiguat
>>> > > > ion.
>>> > > > mlt/0.12.1-20151019.125347-
>>> > > > 32/org.apache.stanbol.enhancer.engine.disambiguation.mlt-0.12.1-
>>> > > > 20151019.125347-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /dis
>>> > > > ambiguation-
>>> > > > mlt/target/org.apache.stanbol.enhancer.engine.disambiguation.mlt-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.disambiguat
>>> > > > ion.
>>> > > > mlt/0.12.1-20151019.125347-
>>> > > > 32/org.apache.stanbol.enhancer.engine.disambiguation.mlt-0.12.1-
>>> > > > 20151019.125347-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/development/archety
>>> > > > pes/
>>> > > > statefull-webmodule/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/statefull-webmodule-archetype/0.12.1-
>>> > > > SNAPSHOT/statefull-webmodule-archetype-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/full-war/
>>> > > > pom.
>>> > > > xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.full-war/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.full-war-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/stanboltool
>>> > > > s/of
>>> > > > fline/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.stanboltools.offlin
>>> > > > e/0.
>>> > > > 12.1-SNAPSHOT/org.apache.stanbol.commons.stanboltools.offline-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/stanboltool
>>> > > > s/of
>>> > > > fline/target/org.apache.stanbol.commons.stanboltools.offline-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.stanboltools.offlin
>>> > > > e/0.
>>> > > > 12.1-20151019.122132-
>>> > > > 35/org.apache.stanbol.commons.stanboltools.offline-0.12.1-
>>> > > > 20151019.122132-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/stanboltool
>>> > > > s/of
>>> > > > fline/target/org.apache.stanbol.commons.stanboltools.offline-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.stanboltools.offlin
>>> > > > e/0.
>>> > > > 12.1-20151019.122132-
>>> > > > 35/org.apache.stanbol.commons.stanboltools.offline-0.12.1-
>>> > > > 20151019.122132-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Offline
>>> > > > > > > > Utilities #91 to compare, so performing full copy of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/reg
>>> > > > istr
>>> > > > y/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.registry/0.
>>> > > > 12.1
>>> > > > -SNAPSHOT/org.apache.stanbol.ontologymanager.registry-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/reg
>>> > > > istr
>>> > > > y/target/org.apache.stanbol.ontologymanager.registry-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.registry/0.
>>> > > > 12.1
>>> > > > -20151019.123725-33/org.apache.stanbol.ontologymanager.registry-
>>> > > > 0.12.1-20151019.123725-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/ontologymanager/reg
>>> > > > istr
>>> > > > y/target/org.apache.stanbol.ontologymanager.registry-0.12.1-
>>> > > > SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.ontologymanager.registry/0.
>>> > > > 12.1
>>> > > > -20151019.123725-33/org.apache.stanbol.ontologymanager.registry-
>>> > > > 0.12.1-20151019.123725-33-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/store/cl
>>> > > > erez
>>> > > > za/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.store.clerezza/0
>>> > > > .12.
>>> > > > 1-SNAPSHOT/org.apache.stanbol.contenthub.store.clerezza-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/store/cl
>>> > > > erez
>>> > > > za/target/org.apache.stanbol.contenthub.store.clerezza-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.store.clerezza/0
>>> > > > .12.
>>> > > > 1-20151019.124345-
>>> > > > 32/org.apache.stanbol.contenthub.store.clerezza-
>>> > > > 0.12.1-20151019.124345-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/store/cl
>>> > > > erez
>>> > > > za/target/org.apache.stanbol.contenthub.store.clerezza-0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.store.clerezza/0
>>> > > > .12.
>>> > > > 1-20151019.124345-
>>> > > > 32/org.apache.stanbol.contenthub.store.clerezza-
>>> > > > 0.12.1-20151019.124345-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > dbpe
>>> > > > dia/dependency-reduced-pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.dbpedia/
>>> > > > 0.12
>>> > > > .1-SNAPSHOT/org.apache.stanbol.entityhub.indexing.dbpedia-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > dbpe
>>> > > > dia/target/org.apache.stanbol.entityhub.indexing.dbpedia-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.dbpedia/
>>> > > > 0.12
>>> > > > .1-20151019.123431-
>>> > > > 33/org.apache.stanbol.entityhub.indexing.dbpedia-
>>> > > > 0.12.1-20151019.123431-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > dbpe
>>> > > > dia/target/org.apache.stanbol.entityhub.indexing.dbpedia-0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.dbpedia/
>>> > > > 0.12
>>> > > > .1-20151019.123431-
>>> > > > 33/org.apache.stanbol.entityhub.indexing.dbpedia-
>>> > > > 0.12.1-20151019.123431-33-sources.jar
>>> > > > > > > > Compressed 69.81 MB of artifacts by 36.8% relative to #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/releasing/source-as
>>> > > > semb
>>> > > > ly/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/source-assembly/1.0.2-SNAPSHOT/source-
>>> > > > assembly-
>>> > > > 1.0.2-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/releasing/source-as
>>> > > > semb
>>> > > > ly/target/source-assembly-1.0.2-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/source-assembly/1.0.2-20151019.121034-
>>> > > > 35/source-
>>> > > > assembly-1.0.2-20151019.121034-35.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Releasing
>>> > > > > > > > Source
>>> > > > > > > > Assembly Descriptor #91 to compare, so performing full
>>> > > > > > > > copy
>>> > > > > > > > of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /top
>>> > > > ic/engine/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.topic/0.12.
>>> > > > 1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engine.topic-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /top
>>> > > > ic/engine/target/org.apache.stanbol.enhancer.engine.topic-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.topic/0.12.
>>> > > > 1-
>>> > > > 20151019.125257-32/org.apache.stanbol.enhancer.engine.topic-
>>> > > > 0.12.1-
>>> > > > 20151019.125257-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /top
>>> > > > ic/engine/target/org.apache.stanbol.enhancer.engine.topic-0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engine.topic/0.12.
>>> > > > 1-
>>> > > > 20151019.125257-32/org.apache.stanbol.enhancer.engine.topic-
>>> > > > 0.12.1-
>>> > > > 20151019.125257-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/demos/webv
>>> > > > > > > > ie/p
>>> > > > > > > > om.xml>
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.demos.enhancer.vie/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.demos.enhancer.vie-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/demos/webvie/target
>>> > > > /org
>>> > > > .apache.stanbol.demos.enhancer.vie-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.demos.enhancer.vie/0.12.1-
>>> > > > 20151019.125850-32/org.apache.stanbol.demos.enhancer.vie-0.12.1-
>>> > > > 20151019.125850-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/demos/webvie/target
>>> > > > /org
>>> > > > .apache.stanbol.demos.enhancer.vie-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.demos.enhancer.vie/0.12.1-
>>> > > > 20151019.125850-32/org.apache.stanbol.demos.enhancer.vie-0.12.1-
>>> > > > 20151019.125850-32-sources.jar
>>> > > > > > > > Compressed 892.71 KB of artifacts by 21.5% relative to
>>> > > > > > > > #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/ldpath/p
>>> > > > om.x
>>> > > > ml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.ldpath/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.contenthub.ldpath-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/ldpath/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.contenthub.ldpath-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.ldpath/0.12.1-
>>> > > > 20151019.124505-32/org.apache.stanbol.contenthub.ldpath-0.12.1-
>>> > > > 20151019.124505-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/ldpath/t
>>> > > > arge
>>> > > > t/org.apache.stanbol.contenthub.ldpath-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.ldpath/0.12.1-
>>> > > > 20151019.124505-32/org.apache.stanbol.contenthub.ldpath-0.12.1-
>>> > > > 20151019.124505-32-sources.jar
>>> > > > > > > > Compressed 194.73 KB of artifacts by 32.9% relative to
>>> > > > > > > > #90
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/nl
>>> > > > p-js
>>> > > > on/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.nlp.json/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.nlp.json-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/nl
>>> > > > p-js
>>> > > > on/target/org.apache.stanbol.enhancer.nlp.json-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.nlp.json/0.12.1-
>>> > > > 20151019.124053-32/org.apache.stanbol.enhancer.nlp.json-0.12.1-
>>> > > > 20151019.124053-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancer/generic/nl
>>> > > > p-js
>>> > > > on/target/org.apache.stanbol.enhancer.nlp.json-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.nlp.json/0.12.1-
>>> > > > 20151019.124053-32/org.apache.stanbol.enhancer.nlp.json-0.12.1-
>>> > > > 20151019.124053-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/engine/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > engine/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.entitylinking.engine
>>> > > > -
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/engine/target/org.apache.stanbol.enhancer.engines.enti
>>> > > > tyli
>>> > > > nking.engine-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > engine/0.12.1-20151019.124859-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitylinking.engine-
>>> > > > 0.12.1-
>>> > > > 20151019.124859-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /ent
>>> > > > itylinking/engine/target/org.apache.stanbol.enhancer.engines.enti
>>> > > > tyli
>>> > > > nking.engine-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.entitylink
>>> > > > ing.
>>> > > > engine/0.12.1-20151019.124859-
>>> > > > 32/org.apache.stanbol.enhancer.engines.entitylinking.engine-
>>> > > > 0.12.1-
>>> > > > 20151019.124859-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/extras
>>> > > > /ste
>>> > > > mpel/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.extras.stempel
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.commons.solr.extras.stempel-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/extras
>>> > > > /ste
>>> > > > mpel/target/org.apache.stanbol.commons.solr.extras.stempel-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.extras.stempel
>>> > > > /0.1
>>> > > > 2.1-20151019.122355-
>>> > > > 35/org.apache.stanbol.commons.solr.extras.stempel-0.12.1-
>>> > > > 20151019.122355-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/solr/extras
>>> > > > /ste
>>> > > > mpel/target/org.apache.stanbol.commons.solr.extras.stempel-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.solr.extras.stempel
>>> > > > /0.1
>>> > > > 2.1-20151019.122355-
>>> > > > 35/org.apache.stanbol.commons.solr.extras.stempel-0.12.1-
>>> > > > 20151019.122355-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Solr
>>> > > > > > > > Extras:
>>> > > > > > > > Lucene Stempel Bundle #91 to compare, so performing full
>>> > > > > > > > copy
>>> > > > > > > > of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/sesa
>>> > > > me/p
>>> > > > om.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.sesame/0.12.
>>> > > > 1-
>>> > > > SNAPSHOT/org.apache.stanbol.entityhub.yard.sesame-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/sesa
>>> > > > me/t
>>> > > > arget/org.apache.stanbol.entityhub.yard.sesame-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.sesame/0.12.
>>> > > > 1-
>>> > > > 20151019.123117-34/org.apache.stanbol.entityhub.yard.sesame-
>>> > > > 0.12.1-
>>> > > > 20151019.123117-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/yard/sesa
>>> > > > me/t
>>> > > > arget/org.apache.stanbol.entityhub.yard.sesame-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.yard.sesame/0.12.
>>> > > > 1-
>>> > > > 20151019.123117-34/org.apache.stanbol.entityhub.yard.sesame-
>>> > > > 0.12.1-
>>> > > > 20151019.123117-34-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > n/po
>>> > > > m.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.opennlp.lang.en/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.en-1.2.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > n/ta
>>> > > > rget/org.apache.stanbol.data.opennlp.lang.en-1.2.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.opennlp.lang.en/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.en-1.2.1-
>>> > > > SNAPSHOT.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > n/ta
>>> > > > rget/org.apache.stanbol.data.opennlp.lang.en-1.2.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.opennlp.lang.en/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.en-1.2.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Data:
>>> > > > > > > > OpenNLP
>>> > > > > > > > Models
>>> > > > > > > > for English #91 to compare, so performing full copy of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/d
>>> > > > efaultdata/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.defau
>>> > > > ltda
>>> > > > ta/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.bundlelists.defaultdata-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/d
>>> > > > efaultdata/target/list.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.defau
>>> > > > ltda
>>> > > > ta/0.12.1-20151019.125916-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.defaultdata-0.12.1-
>>> > > > 20151019.125916-32.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/d
>>> > > > efaultdata/target/org.apache.stanbol.launchers.bundlelists.defaul
>>> > > > tdat
>>> > > > a-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.defau
>>> > > > ltda
>>> > > > ta/0.12.1-20151019.125916-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.defaultdata-0.12.1-
>>> > > > 20151019.125916-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > s/po
>>> > > > m.xml>;
>>> > > > > > > > to org.apache.stanbol/
>>> > > > org.apache.stanbol.data.opennlp.lang.es/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.es-1.2.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > s/ta
>>> > > > rget/org.apache.stanbol.data.opennlp.lang.es-1.2.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to org.apache.stanbol/
>>> > > > org.apache.stanbol.data.opennlp.lang.es/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.es-1.2.1-
>>> > > > SNAPSHOT.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/opennlp/lang/e
>>> > > > s/ta
>>> > > > rget/org.apache.stanbol.data.opennlp.lang.es-1.2.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to org.apache.stanbol/
>>> > > > org.apache.stanbol.data.opennlp.lang.es/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.opennlp.lang.es-1.2.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Data:
>>> > > > > > > > OpenNLP
>>> > > > > > > > Models
>>> > > > > > > > for Spanish #91 to compare, so performing full copy of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e-wr
>>> > > > iter/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable.writer
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.commons.web.viewable.writer-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e-wr
>>> > > > iter/target/org.apache.stanbol.commons.web.viewable.writer-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable.writer
>>> > > > /0.1
>>> > > > 2.1-20151019.122012-
>>> > > > 35/org.apache.stanbol.commons.web.viewable.writer-0.12.1-
>>> > > > 20151019.122012-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/viewabl
>>> > > > e-wr
>>> > > > iter/target/org.apache.stanbol.commons.web.viewable.writer-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.viewable.writer
>>> > > > /0.1
>>> > > > 2.1-20151019.122012-
>>> > > > 35/org.apache.stanbol.commons.web.viewable.writer-0.12.1-
>>> > > > 20151019.122012-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Web
>>> > > > > > > > Template
>>> > > > > > > > Viewable Writer #91 to compare, so performing full copy
>>> > > > > > > > of
>>> > > > > > > > artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/r
>>> > > > ules/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.rules
>>> > > > /0.1
>>> > > > 2.1-SNAPSHOT/org.apache.stanbol.launchers.bundlelists.rules-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/r
>>> > > > ules/target/list.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.rules
>>> > > > /0.1
>>> > > > 2.1-20151019.125955-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.rules-0.12.1-
>>> > > > 20151019.125955-32.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/r
>>> > > > ules/target/org.apache.stanbol.launchers.bundlelists.rules-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.rules
>>> > > > /0.1
>>> > > > 2.1-20151019.125955-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.rules-0.12.1-
>>> > > > 20151019.125955-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/rules/pom.
>>> > > > > > > > xml>
>>> > > > > > > > to
>>> > > > > > > >
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.reactor/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.rules.reactor-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/e
>>> > > > ntityhub/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.entit
>>> > > > yhub
>>> > > > /0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.bundlelists.entityhub-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/e
>>> > > > ntityhub/target/list.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.entit
>>> > > > yhub
>>> > > > /0.12.1-20151019.125936-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.entityhub-0.12.1-
>>> > > > 20151019.125936-32.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/e
>>> > > > ntityhub/target/org.apache.stanbol.launchers.bundlelists.entityhu
>>> > > > b-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.entit
>>> > > > yhub
>>> > > > /0.12.1-20151019.125936-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.entityhub-0.12.1-
>>> > > > 20151019.125936-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /pom
>>> > > > .xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/apache-stanbol-enhancement-engines/0.12.1-
>>> > > > SNAPSHOT/apache-stanbol-enhancement-engines-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/launchers/
>>> > > > > > > > stab
>>> > > > > > > > le/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.stable/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.stable-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/l
>>> > > > anguage-extras/kuromoji/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.langu
>>> > > > agee
>>> > > > xtras.kuromoji/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.bundlelists.languageextras.
>>> > > > kuro
>>> > > > moji-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/l
>>> > > > anguage-extras/kuromoji/target/list.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.langu
>>> > > > agee
>>> > > > xtras.kuromoji/0.12.1-20151019.130025-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.languageextras.kuromo
>>> > > > ji-
>>> > > > 0.12.1-20151019.130025-32.xml
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/l
>>> > > > anguage-
>>> > > > extras/kuromoji/target/org.apache.stanbol.launchers.bundlelists.l
>>> > > > angu
>>> > > > ageextras.kuromoji-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.langu
>>> > > > agee
>>> > > > xtras.kuromoji/0.12.1-20151019.130025-
>>> > > > 32/org.apache.stanbol.launchers.bundlelists.languageextras.kuromo
>>> > > > ji-
>>> > > > 0.12.1-20151019.130025-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/sites/dbpedia/
>>> > > > pom.
>>> > > > xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.sites.dbpedia/1.2.1-
>>> > > > SNAPSHOT/org.apache.stanbol.data.sites.dbpedia-1.2.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/sites/dbpedia/
>>> > > > targ
>>> > > > et/org.apache.stanbol.data.sites.dbpedia-1.2.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.sites.dbpedia/1.2.1-
>>> > > > 20151019.121341-35/org.apache.stanbol.data.sites.dbpedia-1.2.1-
>>> > > > 20151019.121341-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/data/sites/dbpedia/
>>> > > > targ
>>> > > > et/org.apache.stanbol.data.sites.dbpedia-1.2.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.data.sites.dbpedia/1.2.1-
>>> > > > 20151019.121341-35/org.apache.stanbol.data.sites.dbpedia-1.2.1-
>>> > > > 20151019.121341-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Data:
>>> > > > > > > > DBpedia.org #91
>>> > > > > > > > to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /nlp
>>> > > > 2rdf/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.nlp2rdf/0.
>>> > > > 12.1
>>> > > > -SNAPSHOT/org.apache.stanbol.enhancer.engines.nlp2rdf-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /nlp
>>> > > > 2rdf/target/org.apache.stanbol.enhancer.engines.nlp2rdf-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.nlp2rdf/0.
>>> > > > 12.1
>>> > > > -20151019.124801-32/org.apache.stanbol.enhancer.engines.nlp2rdf-
>>> > > > 0.12.1-20151019.124801-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /nlp
>>> > > > 2rdf/target/org.apache.stanbol.enhancer.engines.nlp2rdf-0.12.1-
>>> > > > SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.nlp2rdf/0.
>>> > > > 12.1
>>> > > > -20151019.124801-32/org.apache.stanbol.enhancer.engines.nlp2rdf-
>>> > > > 0.12.1-20151019.124801-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > sour
>>> > > > ce/vcard/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.source.v
>>> > > > card
>>> > > > /0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.entityhub.indexing.source.vcard-
>>> > > > 0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > sour
>>> > > > ce/vcard/target/org.apache.stanbol.entityhub.indexing.source.vcar
>>> > > > d-
>>> > > > 0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.source.v
>>> > > > card
>>> > > > /0.12.1-20151019.123252-
>>> > > > 34/org.apache.stanbol.entityhub.indexing.source.vcard-0.12.1-
>>> > > > 20151019.123252-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/indexing/
>>> > > > sour
>>> > > > ce/vcard/target/org.apache.stanbol.entityhub.indexing.source.vcar
>>> > > > d-
>>> > > > 0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.indexing.source.v
>>> > > > card
>>> > > > /0.12.1-20151019.123252-
>>> > > > 34/org.apache.stanbol.entityhub.indexing.source.vcard-0.12.1-
>>> > > > 20151019.123252-34-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/resourc
>>> > > > es/p
>>> > > > om.xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.resources/0.12.
>>> > > > 1-
>>> > > > SNAPSHOT/org.apache.stanbol.commons.web.resources-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/resourc
>>> > > > es/t
>>> > > > arget/org.apache.stanbol.commons.web.resources-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.resources/0.12.
>>> > > > 1-
>>> > > > 20151019.122020-35/org.apache.stanbol.commons.web.resources-
>>> > > > 0.12.1-
>>> > > > 20151019.122020-35.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/commons/web/resourc
>>> > > > es/t
>>> > > > arget/org.apache.stanbol.commons.web.resources-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.commons.web.resources/0.12.
>>> > > > 1-
>>> > > > 20151019.122020-35/org.apache.stanbol.commons.web.resources-
>>> > > > 0.12.1-
>>> > > > 20151019.122020-35-sources.jar
>>> > > > > > > > No artifacts from stanbol-0.12 » Apache Stanbol Commons
>>> > > > > > > > Web
>>> > > > > > > > Resources
>>> > > > > > > > #91 to compare, so performing full copy of artifacts
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/jena
>>> > > > /pom
>>> > > > .xml>;
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.jena/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.rules.adapters.jena-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/jena
>>> > > > /tar
>>> > > > get/org.apache.stanbol.rules.adapters.jena-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.jena/0.12.1-
>>> > > > 20151019.123819-33/org.apache.stanbol.rules.adapters.jena-0.12.1-
>>> > > > 20151019.123819-33.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/rules/adapters/jena
>>> > > > /tar
>>> > > > get/org.apache.stanbol.rules.adapters.jena-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.rules.adapters.jena/0.12.1-
>>> > > > 20151019.123819-33/org.apache.stanbol.rules.adapters.jena-0.12.1-
>>> > > > 20151019.123819-33-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/reasoners/
>>> > > > > > > > owla
>>> > > > > > > > pi/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.owlapi/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.reasoners.owlapi-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/owlapi/ta
>>> > > > rget
>>> > > > /org.apache.stanbol.reasoners.owlapi-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.owlapi/0.12.1-
>>> > > > 20151019.125809-32/org.apache.stanbol.reasoners.owlapi-0.12.1-
>>> > > > 20151019.125809-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/reasoners/owlapi/ta
>>> > > > rget
>>> > > > /org.apache.stanbol.reasoners.owlapi-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.reasoners.owlapi/0.12.1-
>>> > > > 20151019.125809-32/org.apache.stanbol.reasoners.owlapi-0.12.1-
>>> > > > 20151019.125809-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/model/ses
>>> > > > ame/
>>> > > > pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.model.sesame/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.entityhub.model.sesame-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/model/ses
>>> > > > ame/
>>> > > > target/org.apache.stanbol.entityhub.model.sesame-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.model.sesame/0.12
>>> > > > .1-
>>> > > > 20151019.122917-34/org.apache.stanbol.entityhub.model.sesame-
>>> > > > 0.12.1-
>>> > > > 20151019.122917-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/model/ses
>>> > > > ame/
>>> > > > target/org.apache.stanbol.entityhub.model.sesame-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.model.sesame/0.12
>>> > > > .1-
>>> > > > 20151019.122917-34/org.apache.stanbol.entityhub.model.sesame-
>>> > > > 0.12.1-
>>> > > > 20151019.122917-34-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <https://builds.apache.org/job/stanbol-0.12/ws/entityhub/
>>> > > > > > > > ldpa
>>> > > > > > > > th/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.ldpath/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.entityhub.ldpath-0.12.1-SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/ldpath/ta
>>> > > > rget
>>> > > > /org.apache.stanbol.entityhub.ldpath-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.ldpath/0.12.1-
>>> > > > 20151019.123147-34/org.apache.stanbol.entityhub.ldpath-0.12.1-
>>> > > > 20151019.123147-34.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/entityhub/ldpath/ta
>>> > > > rget
>>> > > > /org.apache.stanbol.entityhub.ldpath-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.entityhub.ldpath/0.12.1-
>>> > > > 20151019.123147-34/org.apache.stanbol.entityhub.ldpath-0.12.1-
>>> > > > 20151019.123147-34-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/search/s
>>> > > > olr/
>>> > > > pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.search.solr/0.12
>>> > > > .1-
>>> > > > SNAPSHOT/org.apache.stanbol.contenthub.search.solr-0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/search/s
>>> > > > olr/
>>> > > > target/org.apache.stanbol.contenthub.search.solr-0.12.1-
>>> > > > SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.search.solr/0.12
>>> > > > .1-
>>> > > > 20151019.124412-32/org.apache.stanbol.contenthub.search.solr-
>>> > > > 0.12.1-
>>> > > > 20151019.124412-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/contenthub/search/s
>>> > > > olr/
>>> > > > target/org.apache.stanbol.contenthub.search.solr-0.12.1-SNAPSHOT-
>>> > > > sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.contenthub.search.solr/0.12
>>> > > > .1-
>>> > > > 20151019.124412-32/org.apache.stanbol.contenthub.search.solr-
>>> > > > 0.12.1-
>>> > > > 20151019.124412-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /der
>>> > > > eference/core/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.dereferenc
>>> > > > e.co
>>> > > > re/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.enhancer.engines.dereference.core-
>>> > > > 0.12.1-
>>> > > > SNAPSHOT.pom
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /der
>>> > > > eference/core/target/org.apache.stanbol.enhancer.engines.derefere
>>> > > > nce.
>>> > > > core-0.12.1-SNAPSHOT.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.dereferenc
>>> > > > e.co
>>> > > > re/0.12.1-20151019.125435-
>>> > > > 32/org.apache.stanbol.enhancer.engines.dereference.core-0.12.1-
>>> > > > 20151019.125435-32.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/enhancement-engines
>>> > > > /der
>>> > > > eference/core/target/org.apache.stanbol.enhancer.engines.derefere
>>> > > > nce.
>>> > > > core-0.12.1-SNAPSHOT-sources.jar
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.enhancer.engines.dereferenc
>>> > > > e.co
>>> > > > re/0.12.1-20151019.125435-
>>> > > > 32/org.apache.stanbol.enhancer.engines.dereference.core-0.12.1-
>>> > > > 20151019.125435-32-sources.jar
>>> > > > > > > > [JENKINS] Archiving
>>> > > > > > > > <
>>> > > > https://builds.apache.org/job/stanbol-0.12/ws/launchers/bundlelis
>>> > > > ts/c
>>> > > > msadapter/pom.xml
>>> > > > >
>>> > > > > > > > to
>>> > > > org.apache.stanbol/org.apache.stanbol.launchers.bundlelists.cmsad
>>> > > > apte
>>> > > > r/0.12.1-
>>> > > > SNAPSHOT/org.apache.stanbol.launchers.bundlelists.cmsadapter
> ...
>
> [Message clipped]



-- 
| Rupert Westenthaler             rupert.westentha...@gmail.com
| Bodenlehenstraße 11                              ++43-699-11108907
| A-5500 Bischofshofen
| REDLINK.CO 
..........................................................................
| http://redlink.co/

Reply via email to