[jira] [Commented] (SLING-3902) InstallerMBean registration fails

2014-09-02 Thread Chetan Mehrotra (JIRA)

[ 
https://issues.apache.org/jira/browse/SLING-3902?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14119413#comment-14119413
 ] 

Chetan Mehrotra commented on SLING-3902:


Thanks [~rombert] !!. I just checked InstallerMBean state so missed that part 
would be careful next time

> InstallerMBean registration fails
> -
>
> Key: SLING-3902
> URL: https://issues.apache.org/jira/browse/SLING-3902
> Project: Sling
>  Issue Type: Bug
>  Components: Installer
>Affects Versions: Installer Core 3.5.4
> Environment: macosx 10.9.4, java version "1.7.0_45"
>Reporter: Bertrand Delacretaz
>Assignee: Chetan Mehrotra
>Priority: Minor
> Fix For: Launchpad Builder 7
>
>
> Steps to reproduce:
> * Build and start launchpad/builder standalone jar (svn revision 1621361), 
> error.log shows below ERROR
> * Remove the org.apache.sling.installer.core bundle and reinstall V3.5.4 of 
> the same bundle (to verify if 3.5.4 also has the issue)
> * Log shows the below ERROR 
> So the issue is present in both 3.5.4 and trunk.
> The ERROR is
> {code}
>  (javax.management.NotCompliantMBeanException: Class 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl is not a JMX 
> compliant Standard MBean) nor the MXBean conventions 
> (javax.management.NotCompliantMBeanException: 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl: Class 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl is not a JMX 
> compliant MXBean)
> at 
> com.sun.jmx.mbeanserver.Introspector.checkCompliance(Introspector.java:163)
> at 
> com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:305)
> at 
> com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.java:492)
> at 
> org.apache.aries.jmx.whiteboard.MBeanHolder.register(MBeanHolder.java:56)
> at 
> org.apache.aries.jmx.whiteboard.JmxWhiteboardSupport.registerMBean(JmxWhiteboardSupport.java:84)
> ...
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: [VOTE] Release Apache Sling Scripting Groovy Support version 1.0.0 ( take 2 )

2014-09-02 Thread Carsten Ziegeler
+1


2014-09-02 22:35 GMT+02:00 Oliver Lietz :

> On Tuesday 02 September 2014 19:35:30 Robert Munteanu wrote:
> > Hi,
> >
> > This is a second vote, called after moving the bundle under
> > contrib/scripting/groovy.
> >
> > We solved 7 issues in this release:
> > https://issues.apache.org/jira/browse/SLING/fixforversion/12315240
>
> +1
>
> O.
>



-- 
Carsten Ziegeler
Adobe Research Switzerland
cziege...@apache.org


Re: [VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Carsten Ziegeler
+1


2014-09-02 22:42 GMT+02:00 Stefan Seifert :

> +1! (non-binding)
>
> >-Original Message-
> >From: justinedel...@gmail.com [mailto:justinedel...@gmail.com] On Behalf
> Of
> >Justin Edelson
> >Sent: Tuesday, September 02, 2014 9:22 PM
> >To: dev@sling.apache.org
> >Subject: [VOTE] Release Apache Sling Models API & Implementation 1.1.0
> >
> >Hi,
> >
> >We solved 15 issues in this release:
> >
> >https://issues.apache.org/jira/browse/SLING/fixforversion/12327365
> >https://issues.apache.org/jira/browse/SLING/fixforversion/12327364
> >
> >Staging repository:
> >https://repository.apache.org/content/repositories/orgapachesling-1112/
> >
> >You can use this UNIX script to download the release and verify the
> >signatures:
> >http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
> >
> >Usage:
> >sh check_staged_release.sh 1112 /tmp/sling-staging
> >
> >Please vote to approve this release:
> >
> >  [ ] +1 Approve the release
> >  [ ]  0 Don't care
> >  [ ] -1 Don't release, because ...
> >
> >This majority vote is open for at least 72 hours.
>



-- 
Carsten Ziegeler
Adobe Research Switzerland
cziege...@apache.org


Re: Tenant Implementation in Sling

2014-09-02 Thread Felix Meschberger
Hi Vineet

No, the OSGi Configuration Admin service does not know about the Sling Tenant 
API and has no other tenant awareness for that matter. Hence, out of the box, 
the OSGi Configuration Admin service is not directly tenant aware.

Configurations could be crafted, though, to simulate tenant awareness in that 
so-called factory configurations would be created, one per tenant. Actually 
feasibility would have to be evaluated on a configuration-by-configuration 
level.

Regards
Felix

Am 28.08.2014 um 10:31 schrieb Vineet :

> Hi all,
> 
> Is there any support added to ConfigAdmin as well so that an osgi service
> could have different configurations for different tenants, just like we have
> based on run-modes?
> 
> 
> 
> --
> View this message in context: 
> http://apache-sling.73963.n3.nabble.com/Tenant-Implementation-in-Sling-tp4031217p4038579.html
> Sent from the Sling - Dev mailing list archive at Nabble.com.



Re: [Features flag] Accessing Feature flags from background services

2014-09-02 Thread Felix Meschberger
Hi

The Features service can be used by non-request processing threads, e.g. by 
background threads/tasks.

Currently, though, it will only global feature state and not context sensitive 
state.

With the proposed addition of the ResourceResolverHelper, which may place the 
ResourceResolver created from a ResourceResolverFactory into the thread 
context, the FeatureManager could leverage that and create a context with the 
ResourceResolver directly if the HttpServletRequest is not available, such as 
in background contexts.

With such a ResourceResolver you can then provide the Tenant information for 
your own Feature implementation.

Regards
Felix

Am 02.09.2014 um 05:58 schrieb Timothée Maret :

> Hi,
> 
> In our service, we provide a set of features which can be enabled/disabled
> per tenant.
> Our tenants implementation is based on the Sling Tenant API and we are
> thinking to leverage the Sling Feature flags API to represent our features.
> From our application POV, we would need to implement this logical signature
> 
>status = enable(tenantId, featureName)
> 
> Looking at the Sling feature flags API, the signature we should implement
> looks like [0]
> 
>status = feature(featureName).enable(request, resolver)
> 
> where the request and resolver are essentially the context provided by the
> features manager implementation.
> 
> So, implementing our use case would be possible as we can derive a tenantId
> from a resolver
> 
>status = feature(featureName).enable(tenantId(resolver))
> 
> With the current features manager implementation, this would be possible
> only when features are checked upon a HTTP request as the features manager
> would be able to provide a meaningful context.
> 
> However, with background services, the features manager would naturally not
> be able to provide a meaningful context (currently the resolver and request
> are null), thus our implementation would be useless for those use cases.
> According to the javadoc in [2], it would also not be possible to
> explicitly provide our own context implementation (that would embed the
> tenantId, or a resource resolver that can be reduced to the tenantId) using
> the API.
> 
> An option would be to implement our own features manager which would take
> the tenantId in consideration, however I believe it would make more sense
> to leverage the existing implementation and allow to pass custom contexts
> to it (essentially removing the comment in [2]).
> 
> Another improvement may be to allow passing a map of properties via the
> context. This way, a background service could pass directly the relevant
> information to the Feature, instead of having to leverage a proxy
> ResourceResolver or HttpServletRequest instance.
> 
> Anyway, are feature flags supposed to be accessible from background
> services (as wished in [1]) ?
> If yes, what is the recommended way to use contextual feature flags from
> background services ?
> 
> Regards,
> 
> Timothee
> 
> [0]
> https://github.com/apache/sling/blob/trunk/bundles/extensions/feature-flags/src/main/java/org/apache/sling/featureflags/Feature.java#L70
> [1] http://markmail.org/message/rueoiuacmft5fdet
> [2]
> https://github.com/apache/sling/blob/trunk/bundles/extensions/feature-flags/src/main/java/org/apache/sling/featureflags/Feature.java#L60



Jenkins build is unstable: sling-trunk-1.8 #103

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is unstable: sling-trunk-1.8 » Apache Sling Launchpad Testing #103

2014-09-02 Thread Apache Jenkins Server
See 




Re: A Potential Compromise for the ResourceMergerService issue

2014-09-02 Thread Alexander Klimetschek
On 30.08.2014, at 08:19, Carsten Ziegeler  wrote:

> If you
> don't provide CRUD writing the UI is much harder and requires knowlege of
> the merging algorithm

For UIs that try to completely hide the merging fact from the user, yes. But I 
don't know how many of those you really need.

And in your case there is actually no automatic selection: your UI would simply 
always write to /apps (i.e. the first element in your search path). AFAIU, the 
UI is geared towards end-users who will only change the most specific 
configuration (as opposed to "default" configurations done by a project 
implementation or default settings part of the original product/sling).

Cheers,
Alex

Build failed in Jenkins: sling-oak-it-1.6 #78

2014-09-02 Thread Apache Jenkins Server
See 

--
[...truncated 845 lines...]
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ 
org.apache.sling.launchpad.testing ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
org.apache.sling.launchpad.testing ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.16:test (default-test) @ 
org.apache.sling.launchpad.testing ---
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.16/maven-surefire-common-2.16.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.16/maven-surefire-common-2.16.pom
 (6 KB at 330.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.2/maven-plugin-annotations-3.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.2/maven-plugin-annotations-3.2.pom
 (2 KB at 93.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.2/maven-plugin-tools-3.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.2/maven-plugin-tools-3.2.pom
 (17 KB at 672.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.16/surefire-api-2.16.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.16/surefire-api-2.16.pom
 (3 KB at 124.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.16/surefire-booter-2.16.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.16/surefire-booter-2.16.pom
 (3 KB at 153.6 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom
 (0 B at 0.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom
 (0 B at 0.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.16/maven-surefire-common-2.16.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.16/surefire-booter-2.16.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.16/surefire-api-2.16.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.2/maven-plugin-annotations-3.2.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.2/maven-plugin-annotations-3.2.jar
 (15 KB at 818.1 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.16/surefire-booter-2.16.jar
 (39 KB at 1842.4 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.16/surefire-api-2.16.jar
 (146 KB at 4708.2 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar
 (0 B at 0.0 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.16/maven-surefire-common-2.16.jar
 (259 KB at 3689.6 KB/sec)
[JENKINS] Recording test results
[INFO] 
[INFO] --- animal-sniffer-maven-plugin:1.11:check (default) @ 
org.apache.sling.launchpad.testing ---
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.11/animal-sniffer-1.11.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.11/animal-sniffer-1.11.pom
 (3 KB at 125.1 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/ow2/asm/asm-all/4.0/asm-all-4.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ow2/asm/asm-all/4.0/asm-all-4.0.pom (2 
KB at 106.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/4.0/asm-parent-4.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/4.0/asm-parent-4.0.pom
 (6 KB at 298.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom (10 
KB at 515.9 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/mojo/java-boot-classpath-detector/1.11/java-boot-c

Build failed in Jenkins: sling-oak-it-1.6 » Apache Sling Launchpad Testing #78

2014-09-02 Thread Apache Jenkins Server
See 


--
[...truncated 777 lines...]
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom
 (865 B at 49.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom
 (4 KB at 207.6 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
 (3 KB at 176.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom
 (690 B at 35.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom
 (769 B at 41.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom
 (2 KB at 67.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar
 (14 KB at 661.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar
 (25 KB at 1355.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
 (32 KB at 972.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar
 (151 KB at 4572.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar
 (5 KB at 278.4 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar
 (19 KB at 1029.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar
 (206 KB at 4472.7 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar
 (44 KB at 2561.9 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar
 (131 KB at 5227.6 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.jar (118 KB 
at 3927.1 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.jar (350 KB 
at 4662.6 KB/sec)
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ 
org.apache.sling.launchpad.testing ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
org.apache.sling.launchpad.testing ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-su

Jenkins build is back to normal : sling-trunk-1.7 » Apache Sling Launchpad Application Builder #818

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is back to normal : sling-trunk-1.7 #818

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : sling-trunk-1.7 » Apache Sling Launchpad Testing #818

2014-09-02 Thread Apache Jenkins Server
See 




Build failed in Jenkins: sling-oak-it-1.6 » Apache Sling Launchpad Testing #77

2014-09-02 Thread Apache Jenkins Server
See 


--
[...truncated 5 lines...]
log4j:WARN Please initialize the log4j system properly.
Executing Maven:  -B -f 

 -Dmaven.repo.local=/jenkins/maven-repositories/0 clean install 
-Dsling.run.modes=oak
[INFO] Scanning for projects...
[INFO] 
[INFO] 
[INFO] Building Apache Sling Launchpad Testing 7-SNAPSHOT
[INFO] 
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.integration-tests/1.0.1-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.integration-tests/1.0.1-SNAPSHOT/maven-metadata.xml
 (2 KB at 2.0 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.integration-tests/1.0.1-SNAPSHOT/org.apache.sling.launchpad.integration-tests-1.0.1-20120828.193342-503.pom
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.integration-tests/1.0.1-SNAPSHOT/org.apache.sling.launchpad.integration-tests-1.0.1-20120828.193342-503.pom
 (6 KB at 8.6 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr2dav/2.2.5/jackrabbit-jcr2dav-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr2dav/2.2.5/jackrabbit-jcr2dav-2.2.5.pom
 (10 KB at 327.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-parent/2.2.5/jackrabbit-parent-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-parent/2.2.5/jackrabbit-parent-2.2.5.pom
 (11 KB at 546.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr2spi/2.2.5/jackrabbit-jcr2spi-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr2spi/2.2.5/jackrabbit-jcr2spi-2.2.5.pom
 (5 KB at 215.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi/2.2.5/jackrabbit-spi-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi/2.2.5/jackrabbit-spi-2.2.5.pom
 (4 KB at 113.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi-commons/2.2.5/jackrabbit-spi-commons-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi-commons/2.2.5/jackrabbit-spi-commons-2.2.5.pom
 (7 KB at 310.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr-commons/2.2.5/jackrabbit-jcr-commons-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-jcr-commons/2.2.5/jackrabbit-jcr-commons-2.2.5.pom
 (3 KB at 156.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-api/2.2.5/jackrabbit-api-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-api/2.2.5/jackrabbit-api-2.2.5.pom
 (3 KB at 69.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi2dav/2.2.5/jackrabbit-spi2dav-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-spi2dav/2.2.5/jackrabbit-spi2dav-2.2.5.pom
 (10 KB at 454.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-webdav/2.2.5/jackrabbit-webdav-2.2.5.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/jackrabbit/jackrabbit-webdav/2.2.5/jackrabbit-webdav-2.2.5.pom
 (4 KB at 183.1 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.0/commons-httpclient-3.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.0/commons-httpclient-3.0.pom
 (8 KB at 392.0 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.servlets.post/2.1.1-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.servlets.post/2.1.1-SNAPSHOT/maven-metadata.xml
 (1018 B at 1.8 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.servlets.post/2.1.1-SNAPSHOT/org.apache.sling.servlets.post-2.1.1-20120622.134751-692.pom
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.servlets.post/2.1.1-SNAPSHOT/org.apache.sling.servlets.post-2.1.1-20120622.134751-692.pom
 (7 KB at 29.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/xmlunit/xm

Build failed in Jenkins: sling-oak-it-1.6 #77

2014-09-02 Thread Apache Jenkins Server
See 

--
[...truncated 70 lines...]
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.servlets.post/2.1.1-SNAPSHOT/org.apache.sling.servlets.post-2.1.1-20120622.134751-692.pom
 (7 KB at 29.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.3/xmlunit-1.3.pom
Downloaded: 
http://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.3/xmlunit-1.3.pom (3 KB 
at 137.1 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-bundles/0.0.1-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-bundles/0.0.1-SNAPSHOT/maven-metadata.xml
 (2 KB at 3.3 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-bundles/0.0.1-SNAPSHOT/org.apache.sling.launchpad.test-bundles-0.0.1-20121112.105235-451.pom
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-bundles/0.0.1-SNAPSHOT/org.apache.sling.launchpad.test-bundles-0.0.1-20121112.105235-451.pom
 (2 KB at 7.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.5.11/log4j-over-slf4j-1.5.11.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/slf4j/log4j-over-slf4j/1.5.11/log4j-over-slf4j-1.5.11.pom
 (2 KB at 108.5 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
 (3 KB at 2.4 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/org.apache.sling.launchpad-7-20140806.130926-572.pom
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/org.apache.sling.launchpad-7-20140806.130926-572.pom
 (14 KB at 23.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.jetty/2.2.2/org.apache.felix.http.jetty-2.2.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.jetty/2.2.2/org.apache.felix.http.jetty-2.2.2.pom
 (6 KB at 282.6 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.parent/2/org.apache.felix.http.parent-2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.parent/2/org.apache.felix.http.parent-2.pom
 (5 KB at 177.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/7.6.13.v20130916/jetty-servlet-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/7.6.13.v20130916/jetty-servlet-7.6.13.v20130916.pom
 (3 KB at 138.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/7.6.13.v20130916/jetty-project-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/7.6.13.v20130916/jetty-project-7.6.13.v20130916.pom
 (28 KB at 1094.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/7.6.13.v20130916/jetty-security-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/7.6.13.v20130916/jetty-security-7.6.13.v20130916.pom
 (3 KB at 133.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/7.6.13.v20130916/jetty-server-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/7.6.13.v20130916/jetty-server-7.6.13.v20130916.pom
 (4 KB at 194.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/2.5.0.v201103041518/javax.servlet-2.5.0.v201103041518.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/orbit/javax.servlet/2.5.0.v201103041518/javax.servlet-2.5.0.v201103041518.pom
 (732 B at 39.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/7.6.13.v20130916/jetty-continuation-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/7.6.13.v20130916/jetty-continuation-7.6.13.v20130916.pom
 (3 KB at 140.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/7.6.13.v20130916/jetty-http-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/7.6.13.v20130916/jetty-http-7.6.13.v20130916.pom
 (3 KB at 141.5 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/7.6.13.v20130916/jetty-io-7.6.13.v20130916.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/7.6.13.v20130916/jetty-io-7.6

Jenkins build is back to stable : sling-trunk-1.6 #2442

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : sling-trunk-1.6 » Apache Sling Launchpad Testing #2442

2014-09-02 Thread Apache Jenkins Server
See 




Re: Build failed in Jenkins: sling-trunk-1.7 #817

2014-09-02 Thread Robert Munteanu
On Wed, Sep 3, 2014 at 1:39 AM, Apache Jenkins Server
 wrote:
>
> [ERROR] Failed to execute goal on project org.apache.sling.launchpad: Could 
> not resolve dependencies for project 
> org.apache.sling:org.apache.sling.launchpad:war:7-SNAPSHOT: The following 
> artifacts could not be resolved: 
> org.apache.sling:org.apache.sling.fsresource:jar:1.1.3-SNAPSHOT, 
> org.apache.sling:org.apache.sling.scripting.jsp.taglib:jar:2.2.1-SNAPSHOT: 
> Could not find artifact 
> org.apache.sling:org.apache.sling.fsresource:jar:1.1.3-SNAPSHOT in Nexus 
> (http://repository.apache.org/snapshots) -> [Help 1]


I've updated the launchpad to refer to the reactor snapshots and the
build should be fine now.

Robert


Build failed in Jenkins: sling-trunk-1.7 #817

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[rombert] SLING-3902 - InstallerMBean registration fails

Updated org.apache.aries.util version.

--
[...truncated 39580 lines...]
[INFO] Sling Bundle Archetype  SUCCESS [12.461s]
[INFO] Sling JCRInstall Bundle Archetype . SUCCESS [12.171s]
[INFO] Sling Taglib Archetype  SUCCESS [6.661s]
[INFO] Apache Sling API .. SUCCESS [20.887s]
[INFO] Apache Sling Resource Resolver  SUCCESS [23.764s]
[INFO] Apache Sling System Bundle Extension: Java Transaction API  SUCCESS 
[9.363s]
[INFO] Apache Sling System Bundle Extension: XML APIs  SUCCESS [6.518s]
[INFO] Apache Sling System Bundle Extension: Activation API  SUCCESS [6.810s]
[INFO] Apache Sling System Bundle Extension: WS APIs . SUCCESS [8.938s]
[INFO] Apache Sling Dynamic Class Loader Support . SUCCESS [22.895s]
[INFO] Apache Sling Commons Java Compiler  SUCCESS [14.581s]
[INFO] Apache Sling JSON Library . SUCCESS [15.217s]
[INFO] Apache Sling SLF4J Implementation (Logback) ... SUCCESS [48.047s]
[INFO] Apache Sling OSGi LogService Implementation ... SUCCESS [9.078s]
[INFO] Apache Sling MIME type mapping support  SUCCESS [15.509s]
[INFO] Apache Sling Commons OSGi support . SUCCESS [17.337s]
[INFO] Apache Sling Scheduler Support  SUCCESS [12.358s]
[INFO] Apache Sling Testing Utilities  SUCCESS [26.873s]
[INFO] Apache Sling Thread Dumper  SUCCESS [11.993s]
[INFO] Apache Sling Thread Support ... SUCCESS [11.463s]
[INFO] Apache Sling Authentication Service ... SUCCESS [12.759s]
[INFO] Apache Sling OpenID Authentication  SUCCESS [14.686s]
[INFO] Apache Sling Form Based Authentication Handler  SUCCESS [18.772s]
[INFO] Apache Sling Authentication Selector .. SUCCESS [9.264s]
[INFO] Apache Sling Engine Implementation  SUCCESS [26.235s]
[INFO] Apache Sling Repository API Bundle  SUCCESS [8.795s]
[INFO] Apache Sling JCR Base Bundle .. SUCCESS [11.712s]
[INFO] Apache Sling JCR ClassLoader .. SUCCESS [8.871s]
[INFO] Apache Sling Initial Content Loader ... SUCCESS [12.805s]
[INFO] Apache Sling Jackrabbit Embedded Repository ... SUCCESS [15.395s]
[INFO] Apache Sling Jackrabbit UserManager Support ... SUCCESS [9.480s]
[INFO] Apache Sling Jackrabbit JSR-283 Access Control Manager Support  SUCCESS 
[9.375s]
[INFO] Apache Sling Wrapper Bundle for the JCR API ... SUCCESS [6.358s]
[INFO] Apache Sling JCR Resource Resolver  SUCCESS [47.382s]
[INFO] Apache Sling JCR Repository Registration .. SUCCESS [9.596s]
[INFO] Apache Sling Simple WebDAV Access to repositories . SUCCESS [9.590s]
[INFO] Apache Sling DavEx Access to repositories . SUCCESS [12.118s]
[INFO] Apache Sling JCR WebConsole Bundle  SUCCESS [11.311s]
[INFO] Apache Sling Oak Repository Server  SUCCESS [14.010s]
[INFO] Apache Sling SlingRepository Integration Tests  SUCCESS [56.173s]
[INFO] Apache Sling Servlet Resolver . SUCCESS [14.820s]
[INFO] Apache Sling Default GET Servlets . SUCCESS [12.228s]
[INFO] Apache Sling Default POST Servlets  SUCCESS [17.040s]
[INFO] Apache Sling Compat Servlets .. SUCCESS [8.487s]
[INFO] Apache Sling Scripting Implementation API . SUCCESS [9.178s]
[INFO] Apache Sling Scripting Core implementation  SUCCESS [18.906s]
[INFO] Apache Sling Scripting JavaScript Support . SUCCESS [21.127s]
[INFO] Apache Sling Scripting JSP Support  SUCCESS [15.728s]
[INFO] Apache Sling JSP Tag Library .. SUCCESS [14.770s]
[INFO] Apache Sling JSP Standard Tag Library . SUCCESS [11.808s]
[INFO] Apache Sling Adapter Manager Implementation ... SUCCESS [11.836s]
[INFO] Apache Sling Bundle Resource Provider . SUCCESS [8.515s]
[INFO] Apache Sling Discovery API  SUCCESS [8.658s]
[INFO] Apache Sling Resource-Based Discovery Service . SUCCESS [2:48.391s]
[INFO] Apache Sling Discovery Support Bundle . SUCCESS [9.141s]
[INFO] Apache Sling Discovery Standalone Implementation .. SUCCESS [11.383s]
[INFO] Apache Sling Event Support  SUCCESS [7:02.850s]
[INFO] Apache Sling Feature Flags  SUCCESS [11.615s]
[INFO] Apache Sling Filesystem Resource Provider . SUCCESS [8.923s]
[INFO] Apache Sling javax.activation bundle .. SUCCESS [9.113s]
[INFO] Apache Sling Service User Mapper .. SUCCESS [12.844s]
[INFO] Apache Sling Settings 

Build failed in Jenkins: sling-trunk-1.7 » Apache Sling Launchpad Application Builder #817

2014-09-02 Thread Apache Jenkins Server
See 


Changes:

[rombert] SLING-3902 - InstallerMBean registration fails

Updated org.apache.aries.util version.

--
[...truncated 304 lines...]
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.jetty/2.3.0/org.apache.felix.http.jetty-2.3.0.pom
 (6 KB at 337.7 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
 (3 KB at 147.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
 (28 KB at 1524.4 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
 (3 KB at 157.2 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
 (4 KB at 217.1 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
 (3 KB at 148.4 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
 (3 KB at 143.3 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
 (3 KB at 123.3 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
 (4 KB at 197.3 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
 (3 KB at 155.0 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
 (4 KB at 200.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.

[jira] [Commented] (SLING-3902) InstallerMBean registration fails

2014-09-02 Thread Robert Munteanu (JIRA)

[ 
https://issues.apache.org/jira/browse/SLING-3902?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118770#comment-14118770
 ] 

Robert Munteanu commented on SLING-3902:


After this change the org.apache.aries.jmx.core bundle remains in an installed 
state since it has an unsatisfied dependency to 
org.apache.aries.util,version=[1.0,2) . Fixed in https://svn.apache.org/r1622133

> InstallerMBean registration fails
> -
>
> Key: SLING-3902
> URL: https://issues.apache.org/jira/browse/SLING-3902
> Project: Sling
>  Issue Type: Bug
>  Components: Installer
>Affects Versions: Installer Core 3.5.4
> Environment: macosx 10.9.4, java version "1.7.0_45"
>Reporter: Bertrand Delacretaz
>Assignee: Chetan Mehrotra
>Priority: Minor
> Fix For: Launchpad Builder 7
>
>
> Steps to reproduce:
> * Build and start launchpad/builder standalone jar (svn revision 1621361), 
> error.log shows below ERROR
> * Remove the org.apache.sling.installer.core bundle and reinstall V3.5.4 of 
> the same bundle (to verify if 3.5.4 also has the issue)
> * Log shows the below ERROR 
> So the issue is present in both 3.5.4 and trunk.
> The ERROR is
> {code}
>  (javax.management.NotCompliantMBeanException: Class 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl is not a JMX 
> compliant Standard MBean) nor the MXBean conventions 
> (javax.management.NotCompliantMBeanException: 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl: Class 
> org.apache.sling.installer.core.impl.InstallerMBeanImpl is not a JMX 
> compliant MXBean)
> at 
> com.sun.jmx.mbeanserver.Introspector.checkCompliance(Introspector.java:163)
> at 
> com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:305)
> at 
> com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.java:492)
> at 
> org.apache.aries.jmx.whiteboard.MBeanHolder.register(MBeanHolder.java:56)
> at 
> org.apache.aries.jmx.whiteboard.JmxWhiteboardSupport.registerMBean(JmxWhiteboardSupport.java:84)
> ...
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Jenkins build is unstable: sling-trunk-1.7 #816

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is back to normal : sling-trunk-1.7 » Apache Sling Launchpad Application Builder #816

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is unstable: sling-trunk-1.7 » Apache Sling Launchpad Testing #816

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.6 #2441

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : sling-trunk-1.6 » Apache Sling Installer Integration Tests #2441

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.6 » Apache Sling Launchpad Testing #2441

2014-09-02 Thread Apache Jenkins Server
See 




RE: [VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Stefan Seifert
+1! (non-binding)

>-Original Message-
>From: justinedel...@gmail.com [mailto:justinedel...@gmail.com] On Behalf Of
>Justin Edelson
>Sent: Tuesday, September 02, 2014 9:22 PM
>To: dev@sling.apache.org
>Subject: [VOTE] Release Apache Sling Models API & Implementation 1.1.0
>
>Hi,
>
>We solved 15 issues in this release:
>
>https://issues.apache.org/jira/browse/SLING/fixforversion/12327365
>https://issues.apache.org/jira/browse/SLING/fixforversion/12327364
>
>Staging repository:
>https://repository.apache.org/content/repositories/orgapachesling-1112/
>
>You can use this UNIX script to download the release and verify the
>signatures:
>http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
>Usage:
>sh check_staged_release.sh 1112 /tmp/sling-staging
>
>Please vote to approve this release:
>
>  [ ] +1 Approve the release
>  [ ]  0 Don't care
>  [ ] -1 Don't release, because ...
>
>This majority vote is open for at least 72 hours.


RE: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-02 Thread Stefan Seifert
+1 (non-binding)

>-Original Message-
>From: Robert Munteanu [mailto:romb...@apache.org]
>Sent: Tuesday, September 02, 2014 4:06 PM
>To: dev@sling.apache.org
>Subject: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4
>
>Hi,
>
>We solved 2 issues in this release:
>https://issues.apache.org/jira/browse/SLING/fixforversion/12324318
>
>Staging repository:
>https://repository.apache.org/content/repositories/orgapachesling-1108/
>
>You can use this UNIX script to download the release and verify the
>signatures:
>http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
>Usage:
>sh check_staged_release.sh 1108 /tmp/sling-staging
>
>Please vote to approve this release:
>
>  [ ] +1 Approve the release
>  [ ]  0 Don't care
>  [ ] -1 Don't release, because ...
>
>This majority vote is open for at least 72 hours.


Re: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-02 Thread Oliver Lietz
On Tuesday 02 September 2014 16:05:36 Robert Munteanu wrote:
> Hi,
> 
> We solved 2 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12324318

+1

O.


Re: [VOTE] Release Apache Sling JSP Tag Library 2.2.2

2014-09-02 Thread Oliver Lietz
On Tuesday 02 September 2014 16:24:10 Robert Munteanu wrote:
> Hi,
> 
> We solved 5 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12324863

+1

O.


Re: [VOTE] Release Apache Sling Launchpad Content 2.0.8

2014-09-02 Thread Oliver Lietz
On Tuesday 02 September 2014 16:15:22 Robert Munteanu wrote:
> Hi,
> 
> We solved 1 issue in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12328241

+1

O.


Re: [VOTE] Release Apache Sling Scripting Groovy Support version 1.0.0 ( take 2 )

2014-09-02 Thread Oliver Lietz
On Tuesday 02 September 2014 19:35:30 Robert Munteanu wrote:
> Hi,
> 
> This is a second vote, called after moving the bundle under
> contrib/scripting/groovy.
> 
> We solved 7 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12315240

+1

O.


Re: [VOTE] Sling Crankstart contrib, first release

2014-09-02 Thread Oliver Lietz
On Monday 01 September 2014 17:59:25 Bertrand Delacretaz wrote:
> Hi,
> 
> This is the first release of these (contrib and experimental) modules.

+1 (would be nice if sample Crankstart files use latest released bundles)

O.


Build failed in Jenkins: sling-contrib-1.6 #1227

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[olli] SLING-3027 revert update of Sling JCR Resource

--
[...truncated 3976 lines...]
195 [main] INFO 
org.apache.sling.replication.queue.impl.PriorityPathDistributionStrategy - 
using priority queue for path /content
195 [main] INFO 
org.apache.sling.replication.queue.impl.PriorityPathDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 12818976
195 [main] INFO 
org.apache.sling.replication.queue.impl.PriorityPathDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec - in 
org.apache.sling.replication.queue.impl.PriorityPathQueueDistributionStrategyTest
Running 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueueTest
197 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
205 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
205 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec - in 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueueTest
Running 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueueTest
236 [main] INFO 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueue 
- job id-123 added
237 [main] INFO 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueue 
- job id-123 added
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 sec - in 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueueTest
Running org.apache.sling.replication.queue.impl.jobhandling.JobHandlingUtilsTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingUtilsTest
Running 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategyTest
241 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
242 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 7987972
242 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
243 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
243 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 7122710
243 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
244 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
245 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 22730182
245 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
247 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
247 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 8970973
247 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
248 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 2112561 entered null was 
attempted 2 times
248 [main] WARN 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 2112561 moved to the error queue
248 [main] WARN 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 2112561 dropped from the default 
queue
250 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
250 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 5226838
250 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorA

Build failed in Jenkins: sling-contrib-1.6 » Apache Sling Replication Integration Tests #1227

2014-09-02 Thread Apache Jenkins Server
See 


--
[INFO] 
[INFO] 
[INFO] Building Apache Sling Replication Integration Tests 0.0.1-SNAPSHOT
[INFO] 
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.pom
[WARNING] The POM for 
org.apache.sling:org.apache.sling.replication:jar:0.0.1-SNAPSHOT is missing, no 
dependency information available
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.jar
[JENKINS] Archiving disabled


Re: [VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Oliver Lietz
On Tuesday 02 September 2014 21:22:08 Justin Edelson wrote:
> Hi,
> 
> We solved 15 issues in this release:
> 
> https://issues.apache.org/jira/browse/SLING/fixforversion/12327365
> https://issues.apache.org/jira/browse/SLING/fixforversion/12327364

+1 (adding Models to Karaf features after release)

O.


Jenkins build is still unstable: sling-trunk-1.6 #2440

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build became unstable: sling-trunk-1.6 » Apache Sling Installer Integration Tests #2440

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.6 » Apache Sling Launchpad Testing #2440

2014-09-02 Thread Apache Jenkins Server
See 




Build failed in Jenkins: sling-trunk-1.7 #815

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[olli] SLING-3027 use latest releases (Sling Commons Json, Sling Commons Mime, 
Sling Commons Scheduler, Sling Event, Sling Extensions Explorer, Sling 
Installer Core, Sling Installer Provider File, Sling Installer Provider JCR, 
Sling JCR Resource, Sling Servlets Get, Sling Servlets Post, Sling i18n)

--
[...truncated 39901 lines...]
[INFO] Sling Bundle Archetype  SUCCESS [14.715s]
[INFO] Sling JCRInstall Bundle Archetype . SUCCESS [12.699s]
[INFO] Sling Taglib Archetype  SUCCESS [8.976s]
[INFO] Apache Sling API .. SUCCESS [23.370s]
[INFO] Apache Sling Resource Resolver  SUCCESS [23.253s]
[INFO] Apache Sling System Bundle Extension: Java Transaction API  SUCCESS 
[6.743s]
[INFO] Apache Sling System Bundle Extension: XML APIs  SUCCESS [11.077s]
[INFO] Apache Sling System Bundle Extension: Activation API  SUCCESS [8.500s]
[INFO] Apache Sling System Bundle Extension: WS APIs . SUCCESS [9.255s]
[INFO] Apache Sling Dynamic Class Loader Support . SUCCESS [18.100s]
[INFO] Apache Sling Commons Java Compiler  SUCCESS [11.747s]
[INFO] Apache Sling JSON Library . SUCCESS [14.759s]
[INFO] Apache Sling SLF4J Implementation (Logback) ... SUCCESS [44.303s]
[INFO] Apache Sling OSGi LogService Implementation ... SUCCESS [6.535s]
[INFO] Apache Sling MIME type mapping support  SUCCESS [12.208s]
[INFO] Apache Sling Commons OSGi support . SUCCESS [15.074s]
[INFO] Apache Sling Scheduler Support  SUCCESS [8.929s]
[INFO] Apache Sling Testing Utilities  SUCCESS [18.114s]
[INFO] Apache Sling Thread Dumper  SUCCESS [5.798s]
[INFO] Apache Sling Thread Support ... SUCCESS [8.547s]
[INFO] Apache Sling Authentication Service ... SUCCESS [9.115s]
[INFO] Apache Sling OpenID Authentication  SUCCESS [13.140s]
[INFO] Apache Sling Form Based Authentication Handler  SUCCESS [18.291s]
[INFO] Apache Sling Authentication Selector .. SUCCESS [9.420s]
[INFO] Apache Sling Engine Implementation  SUCCESS [24.125s]
[INFO] Apache Sling Repository API Bundle  SUCCESS [8.563s]
[INFO] Apache Sling JCR Base Bundle .. SUCCESS [16.911s]
[INFO] Apache Sling JCR ClassLoader .. SUCCESS [11.355s]
[INFO] Apache Sling Initial Content Loader ... SUCCESS [12.652s]
[INFO] Apache Sling Jackrabbit Embedded Repository ... SUCCESS [15.366s]
[INFO] Apache Sling Jackrabbit UserManager Support ... SUCCESS [9.059s]
[INFO] Apache Sling Jackrabbit JSR-283 Access Control Manager Support  SUCCESS 
[14.264s]
[INFO] Apache Sling Wrapper Bundle for the JCR API ... SUCCESS [7.123s]
[INFO] Apache Sling JCR Resource Resolver  SUCCESS [50.855s]
[INFO] Apache Sling JCR Repository Registration .. SUCCESS [11.740s]
[INFO] Apache Sling Simple WebDAV Access to repositories . SUCCESS [13.810s]
[INFO] Apache Sling DavEx Access to repositories . SUCCESS [15.117s]
[INFO] Apache Sling JCR WebConsole Bundle  SUCCESS [14.416s]
[INFO] Apache Sling Oak Repository Server  SUCCESS [12.178s]
[INFO] Apache Sling SlingRepository Integration Tests  SUCCESS [53.399s]
[INFO] Apache Sling Servlet Resolver . SUCCESS [14.927s]
[INFO] Apache Sling Default GET Servlets . SUCCESS [14.755s]
[INFO] Apache Sling Default POST Servlets  SUCCESS [14.620s]
[INFO] Apache Sling Compat Servlets .. SUCCESS [5.314s]
[INFO] Apache Sling Scripting Implementation API . SUCCESS [11.505s]
[INFO] Apache Sling Scripting Core implementation  SUCCESS [24.547s]
[INFO] Apache Sling Scripting JavaScript Support . SUCCESS [18.150s]
[INFO] Apache Sling Scripting JSP Support  SUCCESS [18.064s]
[INFO] Apache Sling JSP Tag Library .. SUCCESS [12.850s]
[INFO] Apache Sling JSP Standard Tag Library . SUCCESS [8.465s]
[INFO] Apache Sling Adapter Manager Implementation ... SUCCESS [11.420s]
[INFO] Apache Sling Bundle Resource Provider . SUCCESS [8.511s]
[INFO] Apache Sling Discovery API  SUCCESS [6.694s]
[INFO] Apache Sling Resource-Based Discovery Service . SUCCESS [2:42.586s]
[INFO] Apache Sling Discovery Support Bundle . SUCCESS [8.589s]
[INFO] Apache Sling Discovery Standalone Implementation .. SUCCESS [9.087s]
[INFO] Apache Sling Event Support  SUCCESS [7:11.921s]
[INFO] Apache Sling Feature Flags  SUCCESS [9.091s]
[INFO] Apache Sling Filesystem Resource Provider . SUCCESS [9.077

Build failed in Jenkins: sling-trunk-1.7 » Apache Sling Launchpad Application Builder #815

2014-09-02 Thread Apache Jenkins Server
See 


--
[...truncated 319 lines...]
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.http.jetty/2.3.0/org.apache.felix.http.jetty-2.3.0.pom
 (6 KB at 820.2 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/8.1.14.v20131031/jetty-servlet-8.1.14.v20131031.pom
 (3 KB at 332.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/8.1.14.v20131031/jetty-project-8.1.14.v20131031.pom
 (28 KB at 3429.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/8.1.14.v20131031/jetty-security-8.1.14.v20131031.pom
 (3 KB at 334.1 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/8.1.14.v20131031/jetty-server-8.1.14.v20131031.pom
 (4 KB at 615.2 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-continuation/8.1.14.v20131031/jetty-continuation-8.1.14.v20131031.pom
 (3 KB at 381.6 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/8.1.14.v20131031/jetty-http-8.1.14.v20131031.pom
 (3 KB at 257.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/8.1.14.v20131031/jetty-io-8.1.14.v20131031.pom
 (3 KB at 299.4 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/8.1.14.v20131031/jetty-util-8.1.14.v20131031.pom
 (4 KB at 479.1 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jmx/8.1.14.v20131031/jetty-jmx-8.1.14.v20131031.pom
 (3 KB at 439.1 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/8.1.14.v20131031/jetty-webapp-8.1.14.v20131031.pom
 (4 KB at 487.9 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/8.1.14.v20131031/jetty-xml-8.1.14.v20131031.pom
 (2 KB at 277.6 KB/sec)
Downloading: 
http://repository.ops4j.org/maven2/org/apache/felix/org.apache.felix.http

Re: [VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Robert Munteanu
+1

Robert

On Tue, Sep 2, 2014 at 10:22 PM, Justin Edelson
 wrote:
> Hi,
>
> We solved 15 issues in this release:
>
> https://issues.apache.org/jira/browse/SLING/fixforversion/12327365
> https://issues.apache.org/jira/browse/SLING/fixforversion/12327364
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachesling-1112/
>
> You can use this UNIX script to download the release and verify the 
> signatures:
> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
> Usage:
> sh check_staged_release.sh 1112 /tmp/sling-staging
>
> Please vote to approve this release:
>
>   [ ] +1 Approve the release
>   [ ]  0 Don't care
>   [ ] -1 Don't release, because ...
>
> This majority vote is open for at least 72 hours.


Re: A Potential Compromise for the ResourceMergerService issue

2014-09-02 Thread Justin Edelson
Hi,
A patch with this solution is attached to
https://issues.apache.org/jira/browse/SLING-3657. I'll commit in
another day or two unless there are concerns.

Regards,
Justin

On Wed, Aug 27, 2014 at 3:50 PM, Justin Edelson
 wrote:
> Hi,
> We still seem to have a disagreement about the benefits/wisdom of
> exposing a service which merges resources. I have an alternative which
> I think solves for both the desire to have flexible resource selection
> algorithms and not expose resources outside the context of the
> ResourceResolver.
>
> We create a SPI interface called MergedResourceSelector. This has a
> single method:
>
> Iterator selectResourcesToMerge(ResourceResolver, String)
>
> OSGi services implementing this interface must also have a merge.root
> service property.
>
> In the resource merger bundle, we have a whiteboard which listens for
> these services and, for each, it registers a ResourceProviderFactory
> which references the Selector service and uses the merge.root service
> property for the provider.roots property of the
> ResourceProviderFactory. The ResourceProvider is an implementation
> detail of the resourcemerger bundle.
>
> This is essentially what I'm trying to implement anyway (where the
> AbstractMergingResourceProvider has all of the merging logic) for
> SLING-3657; the only difference is that rather than using a class
> hierarchy, we use OSGi services.
>
>
> WDYT?
>
> Justin


[VOTE] Release Apache Sling Models API & Implementation 1.1.0

2014-09-02 Thread Justin Edelson
Hi,

We solved 15 issues in this release:

https://issues.apache.org/jira/browse/SLING/fixforversion/12327365
https://issues.apache.org/jira/browse/SLING/fixforversion/12327364

Staging repository:
https://repository.apache.org/content/repositories/orgapachesling-1112/

You can use this UNIX script to download the release and verify the signatures:
http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh

Usage:
sh check_staged_release.sh 1112 /tmp/sling-staging

Please vote to approve this release:

  [ ] +1 Approve the release
  [ ]  0 Don't care
  [ ] -1 Don't release, because ...

This majority vote is open for at least 72 hours.


Re: [VOTE] Release Apache Sling JSP Tag Library 2.2.2

2014-09-02 Thread Daniel Klco
+1


On Tue, Sep 2, 2014 at 10:24 AM, Robert Munteanu  wrote:

> Hi,
>
> We solved 5 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12324863
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachesling-1110/
>
> You can use this UNIX script to download the release and verify the
> signatures:
> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
> Usage:
> sh check_staged_release.sh 1110 /tmp/sling-staging
>
> Please vote to approve this release:
>
>   [ ] +1 Approve the release
>   [ ]  0 Don't care
>   [ ] -1 Don't release, because ...
>
> This majority vote is open for at least 72 hours.
>


[jira] [Resolved] (SLING-3884) Persistent test failures in org.apache.sling.models.it.SimpleTest

2014-09-02 Thread Justin Edelson (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3884?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Edelson resolved SLING-3884.
---
Resolution: Fixed

> Persistent test failures in org.apache.sling.models.it.SimpleTest
> -
>
> Key: SLING-3884
> URL: https://issues.apache.org/jira/browse/SLING-3884
> Project: Sling
>  Issue Type: Bug
>  Components: Extensions
>Affects Versions: Sling Models Implementation 1.1.0
> Environment: Jenkins on builds.apache.org
>Reporter: Robert Munteanu
>Assignee: Bertrand Delacretaz
> Attachments: 140829_SLING-3884_integrationtest.patch
>
>
> Two tests fail on all sling jobs ( 1.6,1.7,1.8 )
> * 
> org.apache.sling.models.it.RemoteIT.testInterfaceInjection(org.apache.sling.models.it.SimpleTest)
> * 
> org.apache.sling.models.it.RemoteIT.testConstructorInjection(org.apache.sling.models.it.SimpleTest)
> The error seems to be the same
> {code}java.lang.AssertionError: 
> testInterfaceInjection(org.apache.sling.models.it.SimpleTest): Model is null
>   at 
> org.apache.sling.junit.remote.testrunner.SlingRemoteTest.run(SlingRemoteTest.java:44)
>   at 
> org.apache.sling.junit.remote.testrunner.SlingRemoteTestRunner.runChild(SlingRemoteTestRunner.java:157)
>   at 
> org.apache.sling.junit.remote.testrunner.SlingRemoteTestRunner.runChild(SlingRemoteTestRunner.java:45)
>   at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
>   at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124)
>   at 
> org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200)
>   at 
> org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
>   at 
> org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103){code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Build failed in Jenkins: sling-contrib-1.6 #1226

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[olli] SLING-3027 use latest releases (Sling Commons Json, Sling Commons Mime, 
Sling Commons Scheduler, Sling Event, Sling Extensions Explorer, Sling 
Installer Core, Sling Installer Provider File, Sling Installer Provider JCR, 
Sling JCR Resource, Sling Servlets Get, Sling Servlets Post, Sling i18n)

--
[...truncated 6479 lines...]
[INFO] --- ianal-maven-plugin:1.0-alpha-1:verify-legal-files (default) @ 
org.apache.sling.replication.core ---
[INFO] Checking legal files in: 
org.apache.sling.replication.core-0.0.1-SNAPSHOT.jar
[INFO] Checking legal files in: 
org.apache.sling.replication.core-0.0.1-SNAPSHOT-sources.jar
[INFO] 
[INFO] --- maven-install-plugin:2.5.1:install (default-install) @ 
org.apache.sling.replication.core ---
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/sling/org.apache.sling.replication.core/0.0.1-SNAPSHOT/org.apache.sling.replication.core-0.0.1-SNAPSHOT.jar
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/sling/org.apache.sling.replication.core/0.0.1-SNAPSHOT/org.apache.sling.replication.core-0.0.1-SNAPSHOT.pom
[INFO] Installing 

 to 
/home/jenkins/jenkins-slave/maven-repositories/1/org/apache/sling/org.apache.sling.replication.core/0.0.1-SNAPSHOT/org.apache.sling.replication.core-0.0.1-SNAPSHOT-sources.jar
[INFO] 
[INFO] --- maven-bundle-plugin:2.4.0:install (default-install) @ 
org.apache.sling.replication.core ---
[INFO] Local OBR update disabled (enable with -DobrRepository)
[JENKINS] Archiving disabled
[INFO] 
[INFO] 
[INFO] Building Apache Sling Replication Integration Tests 0.0.1-SNAPSHOT
[INFO] 
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.pom
 (5 KB at 16.5 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
 (3 KB at 3.0 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/maven-metadata.xml
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.jar
 (69 KB at 557.4 KB/sec)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
org.apache.sling.replication.it ---
[INFO] Deleting 

 (includes = [sling/**], excludes = [])
[INFO] 
[INFO] --- maven-enforcer-plugin:1.3.1:enforce (enforce-java) @ 
org.apache.sling.replication.it ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run 
(set-bundle-required-execution-environment) @ org.apache.sling.replication.it 
---
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ 
org.apache.sling.replication.it ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
org.apache.sling.replication.it ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 

[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run (check-memory-task) @ 
org.apache.sling.replication.it ---
[INFO] Executing tasks

main:
 [echo]  WARNING (SLING-443/SLING-1782) 
**
 [echo] On most platforms, you'll get OutOfMemoryErrors when building 
unless you set
 [echo] on 32bit platforms: MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=256M", see 
SLING-443
 [echo] on 64bit platforms: MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M", see 
SLING-1782
 [echo] 

Build failed in Jenkins: sling-contrib-1.6 » Apache Sling Replication Integration Tests #1226

2014-09-02 Thread Apache Jenkins Server
See 


--
[INFO] 
[INFO] 
[INFO] Building Apache Sling Replication Integration Tests 0.0.1-SNAPSHOT
[INFO] 
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.pom
 (5 KB at 16.5 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
 (3 KB at 3.0 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/maven-metadata.xml
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.testing.tools/1.0.8/org.apache.sling.testing.tools-1.0.8.jar
 (69 KB at 557.4 KB/sec)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
org.apache.sling.replication.it ---
[INFO] Deleting 

 (includes = [sling/**], excludes = [])
[INFO] 
[INFO] --- maven-enforcer-plugin:1.3.1:enforce (enforce-java) @ 
org.apache.sling.replication.it ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run 
(set-bundle-required-execution-environment) @ org.apache.sling.replication.it 
---
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ 
org.apache.sling.replication.it ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
org.apache.sling.replication.it ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 

[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run (check-memory-task) @ 
org.apache.sling.replication.it ---
[INFO] Executing tasks

main:
 [echo]  WARNING (SLING-443/SLING-1782) 
**
 [echo] On most platforms, you'll get OutOfMemoryErrors when building 
unless you set
 [echo] on 32bit platforms: MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=256M", see 
SLING-443
 [echo] on 64bit platforms: MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M", see 
SLING-1782
 [echo] 
**
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:copy-dependencies (copy-runnable-jar) @ 
org.apache.sling.replication.it ---
[INFO] Copying org.apache.sling.launchpad-7-SNAPSHOT-standalone.jar to 

[INFO] 
[INFO] --- maven-dependency-plugin:2.8:copy-dependencies 
(copy-additional-bundles) @ org.apache.sling.replication.it ---
[INFO] Copying org.apache.sling.commons.json-2.0.6.jar to 

[INFO] Copying jackrabbit-jcr-commons-2.7.2.jar to 

[INFO] Copying slf4j-api-1.5.11.jar to 

[INFO] Copying jackrabbit-api-2.7.2.jar to 

[INFO] Copying commons-io-2.4.jar to 

[INFO] Copying jcr-2.0.jar to 

[INFO] Copying org.apache.sling.testing.tools-1.0.8.jar to 


[jira] [Resolved] (SLING-3886) Sling Models: support adapters for models different from the implementation class

2014-09-02 Thread Justin Edelson (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Edelson resolved SLING-3886.
---
Resolution: Fixed
  Assignee: Justin Edelson

> Sling Models: support adapters for models different from the implementation 
> class
> -
>
> Key: SLING-3886
> URL: https://issues.apache.org/jira/browse/SLING-3886
> Project: Sling
>  Issue Type: New Feature
>  Components: Extensions
>Reporter: Stefan Seifert
>Assignee: Justin Edelson
>  Labels: models
> Fix For: Sling Models Implementation 1.1.0, Sling Models API 1.1.0
>
> Attachments: 140827_SLING-3886_adapters_support.patch, 
> 140829_SLING-3886_adapters_support.patch, 
> 140829_SLING-3886_adapters_support_v2.patch
>
>
> currently, as adapter (adaption target) only the implementation class itself 
> that is annotated with the @Model annotation is supported (which can be 
> either an interface or a class).
> if the model is not just a simple model but a class with more complex 
> business logic the following scenario is required:
> * a "service" interface is defined
> * this service interface ist not directly mapped to injected values, but 
> provides higher-level method
> * an implementation class with @Model annotation is implemented which gets 
> the required values injectd internally, but implements the interface for 
> outside access
> this is currently not possible with sling models.
> the attached patch extends the following features:
> * extends the @Model annotation with an optional "adapters" attribute
> * if defined, only the listed adapters are registered for the adapter 
> factory, not the implementation class itself (unless it is listed the 
> "adapters" attribute as well)
> * in the adapters attribute only the implementation class itself or 
> interfaces that it implements or superclasses can be defined
> * with this the scenario above is perfectly possible
> * unit tests included which simulate the bundle add/remove usecases which is 
> required to do the indirect implementation class mapping



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: [VOTE] Release Apache Sling JSP Tag Library 2.2.2

2014-09-02 Thread Justin Edelson
+1

On Tue, Sep 2, 2014 at 10:41 AM, Carsten Ziegeler  wrote:
> +1
>
>
> 2014-09-02 16:24 GMT+02:00 Robert Munteanu :
>
>> Hi,
>>
>> We solved 5 issues in this release:
>> https://issues.apache.org/jira/browse/SLING/fixforversion/12324863
>>
>> Staging repository:
>> https://repository.apache.org/content/repositories/orgapachesling-1110/
>>
>> You can use this UNIX script to download the release and verify the
>> signatures:
>> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>>
>> Usage:
>> sh check_staged_release.sh 1110 /tmp/sling-staging
>>
>> Please vote to approve this release:
>>
>>   [ ] +1 Approve the release
>>   [ ]  0 Don't care
>>   [ ] -1 Don't release, because ...
>>
>> This majority vote is open for at least 72 hours.
>>
>
>
>
> --
> Carsten Ziegeler
> Adobe Research Switzerland
> cziege...@apache.org


Jenkins build is still unstable: sling-trunk-1.6 #2439

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: sling-trunk-1.6 » Apache Sling Launchpad Testing #2439

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 » Apache Sling Launchpad Testing #814

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 #814

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is back to stable : sling-trunk-1.7 » Apache Sling Installer Integration Tests #814

2014-09-02 Thread Apache Jenkins Server
See 




Build failed in Jenkins: sling-contrib-1.6 » Apache Sling Replication Integration Tests #1225

2014-09-02 Thread Apache Jenkins Server
See 


--
[INFO] 
[INFO] 
[INFO] Building Apache Sling Replication Integration Tests 0.0.1-SNAPSHOT
[INFO] 
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
 (3 KB at 0.6 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/maven-metadata.xml
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.pom
[WARNING] The POM for 
org.apache.sling:org.apache.sling.replication:jar:0.0.1-SNAPSHOT is missing, no 
dependency information available
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.jar
[JENKINS] Archiving disabled


Build failed in Jenkins: sling-contrib-1.6 #1225

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[rombert] [maven-release-plugin] prepare for next development iteration

[rombert] [maven-release-plugin] prepare release 
org.apache.sling.scripting.groovy-1.0.0

[rombert] groovy: version back to 1.0.0-SNAPSHOT

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Fix scm tags

[rombert] [maven-release-plugin] prepare release 
org.apache.sling.scripting.groovy-1.0.0

--
[...truncated 4059 lines...]
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec - in 
org.apache.sling.replication.queue.impl.PriorityPathQueueDistributionStrategyTest
Running 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueueTest
192 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
200 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
200 [main] INFO 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueue - 
starting a simple queue for agent agentName
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec - in 
org.apache.sling.replication.queue.impl.simple.SimpleReplicationQueueTest
Running 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueueTest
231 [main] INFO 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueue 
- job id-123 added
232 [main] INFO 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueue 
- job id-123 added
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.031 sec - in 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingReplicationQueueTest
Running org.apache.sling.replication.queue.impl.jobhandling.JobHandlingUtilsTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.sling.replication.queue.impl.jobhandling.JobHandlingUtilsTest
Running 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategyTest
237 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
237 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 2112561
237 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
238 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
238 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 1977511
238 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
239 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
240 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 17153368
240 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
242 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
242 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 30533424
242 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
243 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 14620722 entered null was 
attempted 2 times
243 [main] WARN 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 14620722 moved to the error queue
243 [main] WARN 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 14620722 dropped from the default 
queue
245 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
245 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 11372121
245 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
24

[VOTE] Release Apache Sling Scripting Groovy Support version 1.0.0 ( take 2 )

2014-09-02 Thread Robert Munteanu
Hi,

This is a second vote, called after moving the bundle under
contrib/scripting/groovy.

We solved 7 issues in this release:
https://issues.apache.org/jira/browse/SLING/fixforversion/12315240

Staging repository:
https://repository.apache.org/content/repositories/orgapachesling-/

You can use this UNIX script to download the release and verify the signatures:
http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh

Usage:
sh check_staged_release.sh  /tmp/sling-staging

Please vote to approve this release:

  [ ] +1 Approve the release
  [ ]  0 Don't care
  [ ] -1 Don't release, because ...

This majority vote is open for at least 72 hours.


[jira] [Commented] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

[ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118399#comment-14118399
 ] 

Robert Munteanu commented on SLING-3888:


* https://svn.apache.org/viewvc?view=revision&revision=1622071 - fixed SCM tags

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
> Fix For: Groovy Extensions 1.0.0
>
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu resolved SLING-3888.

Resolution: Fixed

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
> Fix For: Groovy Extensions 1.0.0
>
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Jenkins build is still unstable: sling-trunk-1.7 #813

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build became unstable: sling-trunk-1.7 » Apache Sling Installer Integration Tests #813

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 » Apache Sling Launchpad Testing #813

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.6 #2438

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: sling-trunk-1.6 » Apache Sling Launchpad Testing #2438

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 » Apache Sling Launchpad Testing #812

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 #812

2014-09-02 Thread Apache Jenkins Server
See 



Build failed in Jenkins: sling-contrib-1.6 » Apache Sling Replication Integration Tests #1224

2014-09-02 Thread Apache Jenkins Server
See 


Changes:

[cziegeler] Update to latest parent pom 20

--
[INFO] 
[INFO] 
[INFO] Building Apache Sling Replication Integration Tests 0.0.1-SNAPSHOT
[INFO] 
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-osgi/4.3.2/httpclient-osgi-4.3.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-osgi/4.3.2/httpclient-osgi-4.3.2.pom
 (8 KB at 78.9 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.3.2/httpmime-4.3.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpmime/4.3.2/httpmime-4.3.2.pom
 (5 KB at 89.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-cache/4.3.2/httpclient-cache-4.3.2.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-cache/4.3.2/httpclient-cache-4.3.2.pom
 (7 KB at 115.6 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad/7-SNAPSHOT/maven-metadata.xml
 (3 KB at 6.1 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/maven-metadata.xml
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.pom
[WARNING] The POM for 
org.apache.sling:org.apache.sling.replication:jar:0.0.1-SNAPSHOT is missing, no 
dependency information available
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore-nio/4.3.1/httpcore-nio-4.3.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-osgi/4.3.2/httpclient-osgi-4.3.2.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-cache/4.3.2/httpclient-cache-4.3.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore-nio/4.3.1/httpcore-nio-4.3.1.jar
 (309 KB at 1260.7 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-cache/4.3.2/httpclient-cache-4.3.2.jar
 (147 KB at 501.9 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient-osgi/4.3.2/httpclient-osgi-4.3.2.jar
 (1297 KB at 1109.2 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.replication/0.0.1-SNAPSHOT/org.apache.sling.replication-0.0.1-SNAPSHOT.jar
[JENKINS] Archiving disabled


Build failed in Jenkins: sling-contrib-1.6 #1224

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[cziegeler] Update to latest parent pom 20

[cziegeler] Update to latest parent pom 20

[cziegeler] Update to latest parent pom 20

[cziegeler] Update to latest parent pom 20

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Relocate the groovy extension bundle under contrib/scripting and also move it 
to the contrib reactor from the main reactor.

--
[...truncated 4590 lines...]
216 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 11688861
217 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
217 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 27058272 entered null was 
attempted 2 times
217 [main] WARN 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
item Mock for ReplicationQueueItem, hashCode: 27058272 dropped from the default 
queue
218 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
using error aware queue distribution
218 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 5165021
218 [main] INFO 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategy - 
replication status: {"attempts":"0","successful":"false","state":"null"}
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec - in 
org.apache.sling.replication.queue.impl.ErrorAwareQueueDistributionStrategyTest
Running 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategyTest
220 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - using 
single queue distribution
220 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 12621140
221 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
replication status: null
221 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - using 
single queue distribution
222 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 25948274
222 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
replication status: Mock for ReplicationQueueItemState, hashCode: 5699121
223 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - using 
single queue distribution
223 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 20785379
223 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
replication status: Mock for ReplicationQueueItemState, hashCode: 4677928
224 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - using 
single queue distribution
224 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
obtained queue Mock for ReplicationQueue, hashCode: 20290587
224 [main] INFO 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategy - 
replication status: Mock for ReplicationQueueItemState, hashCode: 10217370
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec - in 
org.apache.sling.replication.queue.impl.SingleQueueDistributionStrategyTest
Running 
org.apache.sling.replication.transport.impl.AdvancedHttpReplicationTransportHandlerTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 sec - in 
org.apache.sling.replication.transport.impl.AdvancedHttpReplicationTransportHandlerTest
Running 
org.apache.sling.replication.transport.authentication.impl.UserCredentialsTransportAuthenticationProviderTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.24 sec - in 
org.apache.sling.replication.transport.authentication.impl.UserCredentialsTransportAuthenticationProviderTest
Running 
org.apache.sling.replication.transport.authentication.impl.NopTransportAuthenticationProviderTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec - in 
org.apache.sling.replication.transport.authentication.impl.NopTransportAuthenticationProviderTest
Running org.apache.sling.replication.rule.impl.TriggerPathReplicationRuleTest
492 [main] WARN 
org.apache.sling.replication.rule.impl.TriggerPathReplicationRule - rule 
trigger on path: 1 2 3 doesn't match signature: trigger on path: ${path}
492 [main] INFO 
org.apache.sling.replication.rule.impl.TriggerPathReplicationRule - trigger 

[jira] [Resolved] (SLING-3904) Update to latest maven scr and bundle plugin

2014-09-02 Thread Carsten Ziegeler (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3904?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Carsten Ziegeler resolved SLING-3904.
-
Resolution: Fixed

> Update to latest maven scr and bundle plugin
> 
>
> Key: SLING-3904
> URL: https://issues.apache.org/jira/browse/SLING-3904
> Project: Sling
>  Issue Type: Improvement
>  Components: General
>Affects Versions: Parent 20
>Reporter: Carsten Ziegeler
>Assignee: Carsten Ziegeler
> Fix For: Parent 21
>
>
> We should update to the latest maven scr and bundle plugin as they fix some 
> problems with communicating between each other and also allows us to enable 
> baselining for easier semantic versioning.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Jenkins build is still unstable: sling-trunk-1.6 » Apache Sling Launchpad Testing #2437

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.6 #2437

2014-09-02 Thread Apache Jenkins Server
See 



Re: [VOTE] Release Apache Sling Launchpad Content 2.0.8

2014-09-02 Thread Carsten Ziegeler
+1


2014-09-02 16:15 GMT+02:00 Robert Munteanu :

> Hi,
>
> We solved 1 issue in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12328241
>
> There are still some outstanding issues:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12328242
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachesling-1109/
>
> You can use this UNIX script to download the release and verify the
> signatures:
> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
> Usage:
> sh check_staged_release.sh 1109 /tmp/sling-staging
>
> Please vote to approve this release:
>
>   [ ] +1 Approve the release
>   [ ]  0 Don't care
>   [ ] -1 Don't release, because ...
>
> This majority vote is open for at least 72 hours.
>



-- 
Carsten Ziegeler
Adobe Research Switzerland
cziege...@apache.org


Re: [VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-02 Thread Carsten Ziegeler
+1


2014-09-02 16:05 GMT+02:00 Robert Munteanu :

> Hi,
>
> We solved 2 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12324318
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachesling-1108/
>
> You can use this UNIX script to download the release and verify the
> signatures:
> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
> Usage:
> sh check_staged_release.sh 1108 /tmp/sling-staging
>
> Please vote to approve this release:
>
>   [ ] +1 Approve the release
>   [ ]  0 Don't care
>   [ ] -1 Don't release, because ...
>
> This majority vote is open for at least 72 hours.
>



-- 
Carsten Ziegeler
Adobe Research Switzerland
cziege...@apache.org


Re: [VOTE] Release Apache Sling JSP Tag Library 2.2.2

2014-09-02 Thread Carsten Ziegeler
+1


2014-09-02 16:24 GMT+02:00 Robert Munteanu :

> Hi,
>
> We solved 5 issues in this release:
> https://issues.apache.org/jira/browse/SLING/fixforversion/12324863
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachesling-1110/
>
> You can use this UNIX script to download the release and verify the
> signatures:
> http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh
>
> Usage:
> sh check_staged_release.sh 1110 /tmp/sling-staging
>
> Please vote to approve this release:
>
>   [ ] +1 Approve the release
>   [ ]  0 Don't care
>   [ ] -1 Don't release, because ...
>
> This majority vote is open for at least 72 hours.
>



-- 
Carsten Ziegeler
Adobe Research Switzerland
cziege...@apache.org


Jenkins build is back to stable : sling-trunk-1.7 » Apache Sling Installer Integration Tests #811

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 » Apache Sling Launchpad Testing #811

2014-09-02 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: sling-trunk-1.7 #811

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is unstable: sling-trunk-1.8 #97

2014-09-02 Thread Apache Jenkins Server
See 



Jenkins build is unstable: sling-trunk-1.8 » Apache Sling Launchpad Testing #97

2014-09-02 Thread Apache Jenkins Server
See 




[VOTE] Release Apache Sling JSP Tag Library 2.2.2

2014-09-02 Thread Robert Munteanu
Hi,

We solved 5 issues in this release:
https://issues.apache.org/jira/browse/SLING/fixforversion/12324863

Staging repository:
https://repository.apache.org/content/repositories/orgapachesling-1110/

You can use this UNIX script to download the release and verify the signatures:
http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh

Usage:
sh check_staged_release.sh 1110 /tmp/sling-staging

Please vote to approve this release:

  [ ] +1 Approve the release
  [ ]  0 Don't care
  [ ] -1 Don't release, because ...

This majority vote is open for at least 72 hours.


[jira] [Commented] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

[ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118226#comment-14118226
 ] 

Robert Munteanu commented on SLING-3888:


* https://svn.apache.org/viewvc?view=revision&revision=1622011 - relocated the 
bundle under contrib

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
> Fix For: Groovy Extensions 1.0.0
>
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[VOTE] Release Apache Sling Launchpad Content 2.0.8

2014-09-02 Thread Robert Munteanu
Hi,

We solved 1 issue in this release:
https://issues.apache.org/jira/browse/SLING/fixforversion/12328241

There are still some outstanding issues:
https://issues.apache.org/jira/browse/SLING/fixforversion/12328242

Staging repository:
https://repository.apache.org/content/repositories/orgapachesling-1109/

You can use this UNIX script to download the release and verify the signatures:
http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh

Usage:
sh check_staged_release.sh 1109 /tmp/sling-staging

Please vote to approve this release:

  [ ] +1 Approve the release
  [ ]  0 Don't care
  [ ] -1 Don't release, because ...

This majority vote is open for at least 72 hours.


Re: Build failed in Jenkins: sling-contrib-1.6 #1223

2014-09-02 Thread Robert Munteanu
On Tue, Sep 2, 2014 at 5:07 PM, Apache Jenkins Server
 wrote:
> See 
>
> Changes:
>
> [rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

This is related to my changes above, I'll fix the build shortly.

Robert


[jira] [Closed] (SLING-1750) All links/hrefs on initial content's index.html should be relative

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-1750?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu closed SLING-1750.
--

> All links/hrefs on initial content's index.html should be relative
> --
>
> Key: SLING-1750
> URL: https://issues.apache.org/jira/browse/SLING-1750
> Project: Sling
>  Issue Type: Bug
>  Components: Launchpad
>Reporter: Justin Edelson
>Assignee: Justin Edelson
> Fix For: Launchpad Content 2.0.6
>
>
> for example... if you deploy the sling war to a servlet container at a 
> subcontext (i.e. /sling), the index.html page doesn't have the correct URL 
> for sling.js



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (SLING-1401) Samples should use sling:authRequestLogin=true instead of setting "Allow Anonymous Access" to false.

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-1401?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu updated SLING-1401:
---
Fix Version/s: (was: Launchpad Content 2.0.6)
   Launchpad Content 2.0.10

> Samples should use sling:authRequestLogin=true instead of setting "Allow 
> Anonymous Access" to false.
> 
>
> Key: SLING-1401
> URL: https://issues.apache.org/jira/browse/SLING-1401
> Project: Sling
>  Issue Type: Bug
>  Components: Samples
>Reporter: Bertrand Delacretaz
>Priority: Minor
> Fix For: Launchpad Content 2.0.10
>
>
> Setting "Allow Anonymous Access" to false prevents WebDAV on / from working 
> (SLING-1400), and anyway instructing users to login looks useful.
> Samples like the 46-line blog 
> (http://sling.apache.org/site/46-line-blog.html) and the esp blog sample 
> should rather instruct users to first login via 
> http://localhost:/?sling:authRequestLogin=true
> I'll also add that link to the default Sling index.html page, and add tests 
> that verify that this login URL returns status 401.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (SLING-3092) sling.css references image from sling.apache.org

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu updated SLING-3092:
---
Fix Version/s: (was: Launchpad Content 2.0.6)
   Launchpad Content 2.0.8

> sling.css references image from sling.apache.org
> 
>
> Key: SLING-3092
> URL: https://issues.apache.org/jira/browse/SLING-3092
> Project: Sling
>  Issue Type: Bug
>  Components: Launchpad
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
>Priority: Trivial
> Fix For: Launchpad Content 2.0.8
>
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> This makes the page load times unpredictable and is a bad experience when 
> working/demoing offline.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Build failed in Jenkins: sling-contrib-1.6 #1223

2014-09-02 Thread Apache Jenkins Server
See 

Changes:

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move ScriptBindingsValuesProviderTest.testGSPProvider to the
contrib-testing module.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Remove the groovy bundles from the karaf launchpad tests.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Remove the sling bundles from the crankstart.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Make the move for the groovy bundle from extensions to scripting.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move the groovy extension and groovy bundle to the contrib launchpad.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move integration tests to the contrib module.

--
[...truncated 6013 lines...]
[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/felix/org.apache.felix.http.whiteboard/2.2.0/org.apache.felix.http.whiteboard-2.2.0.jar
 to 

[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/sling/org.apache.sling.installer.console/1.0.0/org.apache.sling.installer.console-1.0.0.jar
 to 

[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/sling/org.apache.sling.installer.factory.configuration/1.0.14/org.apache.sling.installer.factory.configuration-1.0.14.jar
 to 

Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.installer.provider.jcr/3.1.9-SNAPSHOT/maven-metadata.xml
[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/sling/org.apache.sling.installer.provider.jcr/3.1.9-SNAPSHOT/org.apache.sling.installer.provider.jcr-3.1.9-SNAPSHOT.jar
 to 

Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services/2.0.7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services/2.0.7-SNAPSHOT/maven-metadata.xml
 (1 KB at 2.6 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-2.0.7-20110228.165418-88.jar
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-2.0.7-20110228.165418-88.jar
 (36 KB at 193.9 KB/sec)
[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/sling/org.apache.sling.launchpad.test-services/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-2.0.7-SNAPSHOT.jar
 to 

Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services-war/2.0.7-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services-war/2.0.7-SNAPSHOT/maven-metadata.xml
 (2 KB at 3.5 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services-war/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-war-2.0.7-20110228.165418-601.war
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.test-services-war/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-war-2.0.7-20110228.165418-601.war
 (14 KB at 126.4 KB/sec)
[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositories/3/org/apache/sling/org.apache.sling.launchpad.test-services-war/2.0.7-SNAPSHOT/org.apache.sling.launchpad.test-services-war-2.0.7-SNAPSHOT.war
 to 

[INFO] Copying bundle from 
/home/jenkins/jenkins-slave/maven-repositorie

Jenkins build is back to normal : sling-contrib-1.6 » Apache Sling Internationalization Support #1223

2014-09-02 Thread Apache Jenkins Server
See 




Build failed in Jenkins: sling-contrib-1.6 » Apache Sling Launchpad Contrib Testing #1223

2014-09-02 Thread Apache Jenkins Server
See 


Changes:

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move ScriptBindingsValuesProviderTest.testGSPProvider to the
contrib-testing module.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Make the move for the groovy bundle from extensions to scripting.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move the groovy extension and groovy bundle to the contrib launchpad.

[rombert] SLING-3888 - Move groovy extension bundle to contrib/scripting

Move integration tests to the contrib module.

--
[INFO] 
[INFO] 
[INFO] Building Apache Sling Launchpad Contrib Testing 4-SNAPSHOT
[INFO] 
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/maven-metadata.xml
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/maven-metadata.xml
 (2 KB at 11.6 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/org.apache.sling.launchpad.base-2.5.1-20130304.154030-1.pom
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/org.apache.sling.launchpad.base-2.5.1-20130304.154030-1.pom
 (14 KB at 52.2 KB/sec)
Downloading: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/org.apache.sling.launchpad.base-2.5.1-20130304.154030-1-webapp.war
Downloaded: 
http://repository.apache.org/snapshots/org/apache/sling/org.apache.sling.launchpad.base/2.5.1-SNAPSHOT/org.apache.sling.launchpad.base-2.5.1-20130304.154030-1-webapp.war
 (104 KB at 359.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/biz/aQute/bnd/0.0.169/bnd-0.0.169.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.servlets.post/2.0.2-incubator/org.apache.sling.servlets.post-2.0.2-incubator.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.2/jcl-over-slf4j-1.5.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.2/jcl-over-slf4j-1.5.2.jar
 (17 KB at 100.4 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.servlets.post/2.0.2-incubator/org.apache.sling.servlets.post-2.0.2-incubator.jar
 (53 KB at 198.3 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/biz/aQute/bnd/0.0.169/bnd-0.0.169.jar (181 
KB at 313.6 KB/sec)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] Deleting 

 (includes = [derby.log, cachedir, sling], excludes = [])
[INFO] 
[INFO] --- maven-enforcer-plugin:1.3.1:enforce (enforce-java) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run 
(set-bundle-required-execution-environment) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.5:process (default) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 6 resources
[INFO] Copying 3 resources
[INFO] 
[INFO] --- build-helper-maven-plugin:1.8:reserve-network-port 
(reserve-network-port) @ org.apache.sling.launchpad.contrib-testing ---
[INFO] Reserved port 53236 for http.port
[INFO] 
[INFO] --- maven-antrun-plugin:1.7:run (check-memory-task) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] Executing tasks

main:
 [echo]  WARNING (SLING-443/SLING-1782) 
**
 [echo] On most platforms, you'll get OutOfMemoryErrors when building 
unless you set
 [echo] on 32bit platforms: MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=256M", see 
SLING-443
 [echo] on 64bit platforms: MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M", see 
SLING-1782
 [echo] 
**
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ 
org.apache.sling.launchpad.contrib-testing ---
[INFO] Using 'UTF-8

[VOTE] Release Apache Sling Filesystem ResourceProvider 1.1.4

2014-09-02 Thread Robert Munteanu
Hi,

We solved 2 issues in this release:
https://issues.apache.org/jira/browse/SLING/fixforversion/12324318

Staging repository:
https://repository.apache.org/content/repositories/orgapachesling-1108/

You can use this UNIX script to download the release and verify the signatures:
http://svn.apache.org/repos/asf/sling/trunk/check_staged_release.sh

Usage:
sh check_staged_release.sh 1108 /tmp/sling-staging

Please vote to approve this release:

  [ ] +1 Approve the release
  [ ]  0 Don't care
  [ ] -1 Don't release, because ...

This majority vote is open for at least 72 hours.


[jira] [Updated] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu updated SLING-3888:
---
Fix Version/s: Groovy Extensions 1.0.0

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
> Fix For: Groovy Extensions 1.0.0
>
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Munteanu updated SLING-3888:
---
Affects Version/s: (was: Groovy Extensions 1.0.0)

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
> Fix For: Groovy Extensions 1.0.0
>
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (SLING-3888) Move groovy extension bundle to contrib/scripting

2014-09-02 Thread Robert Munteanu (JIRA)

[ 
https://issues.apache.org/jira/browse/SLING-3888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118207#comment-14118207
 ] 

Robert Munteanu commented on SLING-3888:


I've done the bulk of the changes in the revisions mentioned below. Leaving 
open in case something is still missing.

* https://svn.apache.org/viewvc?view=revision&revision=1621991 - moved 
integration tests to contrib module
* https://svn.apache.org/viewvc?view=revision&revision=1621992  - moved the 
groovy extension and groovy bundle to the contrib launchpad
* https://svn.apache.org/viewvc?view=revision&revision=1621993 - make the move 
for the groovy bundle from extensions to scripting.
* https://svn.apache.org/viewvc?view=revision&revision=1621994  - remove the 
sling bundles from the crankstart
* https://svn.apache.org/viewvc?view=revision&revision=1621995 - remove the 
groovy bundles from the karaf launchpad tests
* https://svn.apache.org/viewvc?view=revision&revision=1621996 - use 
org.apache.sling.api bundle instead of the groovy bundle in SampleJUnitTest 
* https://svn.apache.org/viewvc?view=revision&revision=1621997 - move 
ScriptBindingsValuesProviderTest.testGSPProvider to the contrib-testing module.

> Move groovy extension bundle to contrib/scripting
> -
>
> Key: SLING-3888
> URL: https://issues.apache.org/jira/browse/SLING-3888
> Project: Sling
>  Issue Type: Task
>  Components: Scripting
>Affects Versions: Groovy Extensions 1.0.0
>Reporter: Robert Munteanu
>Assignee: Robert Munteanu
>
> See discussion at http://sling-dev.markmail.org/thread/k36jtceoh7p2dvuv . 
> This includes
> * removing the groovy scripting and groovy bundles from the launchpad
> * moving the bundle to contrib/scripting
> * adjust integration tests to run against the contrib launchpad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (SLING-3905) Support Password Expired In Sling Authenticator

2014-09-02 Thread JIRA

 [ 
https://issues.apache.org/jira/browse/SLING-3905?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dominique Jäggi updated SLING-3905:
---
Attachment: pw_expiry_sling.patch

> Support Password Expired In Sling Authenticator
> ---
>
> Key: SLING-3905
> URL: https://issues.apache.org/jira/browse/SLING-3905
> Project: Sling
>  Issue Type: New Feature
>  Components: Authentication
>Reporter: Dominique Jäggi
> Attachments: pw_expiry_sling.patch
>
>
> With the added support for password expiry and password change on initial 
> login (see OAK-1922) the sling authenticator needs to be enhanced in order to 
> support additional login states, such as "password expired". these states can 
> later be evaluated by login handlers, e.g. redirecting to appropriate change 
> password locations.
> the attached patch introduces an enum for login state reason codes and sets 
> the code during handle login failure depending on the login state.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (SLING-3905) Support Password Expired In Sling Authenticator

2014-09-02 Thread JIRA
Dominique Jäggi created SLING-3905:
--

 Summary: Support Password Expired In Sling Authenticator
 Key: SLING-3905
 URL: https://issues.apache.org/jira/browse/SLING-3905
 Project: Sling
  Issue Type: New Feature
  Components: Authentication
Reporter: Dominique Jäggi


With the added support for password expiry and password change on initial login 
(see OAK-1922) the sling authenticator needs to be enhanced in order to support 
additional login states, such as "password expired". these states can later be 
evaluated by login handlers, e.g. redirecting to appropriate change password 
locations.

the attached patch introduces an enum for login state reason codes and sets the 
code during handle login failure depending on the login state.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Jenkins build is back to stable : sling-trunk-1.8 » Apache Sling Event Support #96

2014-09-02 Thread Apache Jenkins Server
See 




[Features flag] Accessing Feature flags from background services

2014-09-02 Thread Timothée Maret
Hi,

In our service, we provide a set of features which can be enabled/disabled
per tenant.
Our tenants implementation is based on the Sling Tenant API and we are
thinking to leverage the Sling Feature flags API to represent our features.
>From our application POV, we would need to implement this logical signature

status = enable(tenantId, featureName)

Looking at the Sling feature flags API, the signature we should implement
looks like [0]

status = feature(featureName).enable(request, resolver)

where the request and resolver are essentially the context provided by the
features manager implementation.

So, implementing our use case would be possible as we can derive a tenantId
from a resolver

status = feature(featureName).enable(tenantId(resolver))

With the current features manager implementation, this would be possible
only when features are checked upon a HTTP request as the features manager
would be able to provide a meaningful context.

However, with background services, the features manager would naturally not
be able to provide a meaningful context (currently the resolver and request
are null), thus our implementation would be useless for those use cases.
According to the javadoc in [2], it would also not be possible to
explicitly provide our own context implementation (that would embed the
tenantId, or a resource resolver that can be reduced to the tenantId) using
the API.

An option would be to implement our own features manager which would take
the tenantId in consideration, however I believe it would make more sense
to leverage the existing implementation and allow to pass custom contexts
to it (essentially removing the comment in [2]).

Another improvement may be to allow passing a map of properties via the
context. This way, a background service could pass directly the relevant
information to the Feature, instead of having to leverage a proxy
ResourceResolver or HttpServletRequest instance.

Anyway, are feature flags supposed to be accessible from background
services (as wished in [1]) ?
If yes, what is the recommended way to use contextual feature flags from
background services ?

Regards,

Timothee

[0]
https://github.com/apache/sling/blob/trunk/bundles/extensions/feature-flags/src/main/java/org/apache/sling/featureflags/Feature.java#L70
[1] http://markmail.org/message/rueoiuacmft5fdet
[2]
https://github.com/apache/sling/blob/trunk/bundles/extensions/feature-flags/src/main/java/org/apache/sling/featureflags/Feature.java#L60


[jira] [Created] (SLING-3904) Update to latest maven scr and bundle plugin

2014-09-02 Thread Carsten Ziegeler (JIRA)
Carsten Ziegeler created SLING-3904:
---

 Summary: Update to latest maven scr and bundle plugin
 Key: SLING-3904
 URL: https://issues.apache.org/jira/browse/SLING-3904
 Project: Sling
  Issue Type: Improvement
  Components: General
Affects Versions: Parent 20
Reporter: Carsten Ziegeler
Assignee: Carsten Ziegeler
 Fix For: Parent 21


We should update to the latest maven scr and bundle plugin as they fix some 
problems with communicating between each other and also allows us to enable 
baselining for easier semantic versioning.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


  1   2   >