Return-Path: X-Original-To: apmail-sling-commits-archive@www.apache.org Delivered-To: apmail-sling-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1551979BE for ; Mon, 7 Nov 2011 14:26:06 +0000 (UTC) Received: (qmail 33375 invoked by uid 500); 7 Nov 2011 14:26:06 -0000 Delivered-To: apmail-sling-commits-archive@sling.apache.org Received: (qmail 33341 invoked by uid 500); 7 Nov 2011 14:26:06 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 33334 invoked by uid 99); 7 Nov 2011 14:26:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Nov 2011 14:26:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Nov 2011 14:26:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 50F752388A67; Mon, 7 Nov 2011 14:25:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1198746 - in /sling/trunk/bundles/auth/core: pom.xml src/main/java/org/apache/sling/auth/core/package-info.java src/main/java/org/apache/sling/auth/core/spi/package-info.java src/main/java/org/apache/sling/engine/auth/package-info.java Date: Mon, 07 Nov 2011 14:25:44 -0000 To: commits@sling.apache.org From: fmeschbe@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111107142544.50F752388A67@eris.apache.org> Author: fmeschbe Date: Mon Nov 7 14:25:43 2011 New Revision: 1198746 URL: http://svn.apache.org/viewvc?rev=1198746&view=rev Log: SLING-2267 Upgrade to Maven Bundle plugin 2.3.4 and make use of BND package level annotations for package exports Added: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java (with props) sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java (with props) sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java (with props) Modified: sling/trunk/bundles/auth/core/pom.xml Modified: sling/trunk/bundles/auth/core/pom.xml URL: http://svn.apache.org/viewvc/sling/trunk/bundles/auth/core/pom.xml?rev=1198746&r1=1198745&r2=1198746&view=diff ============================================================================== --- sling/trunk/bundles/auth/core/pom.xml (original) +++ sling/trunk/bundles/auth/core/pom.xml Mon Nov 7 14:25:43 2011 @@ -60,19 +60,15 @@ org.apache.felix maven-bundle-plugin + 2.3.4 true http://sling.apache.org/site/authentication.html - - org.apache.sling.auth.core;version=1.0.0, - org.apache.sling.auth.core.spi;version=1.0.4, - org.apache.sling.engine.auth;version=2.0.6 - - org.apache.sling.api.auth;version="[$(version;==;$(@)),$(version;=+;$(@)))", + org.apache.sling.api.auth;provide:=true, * @@ -144,6 +140,11 @@ org.apache.felix org.apache.felix.scr.annotations + + biz.aqute + bndlib + 1.43.0 + Added: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java?rev=1198746&view=auto ============================================================================== --- sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java (added) +++ sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java Mon Nov 7 14:25:43 2011 @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Provides the authentication helper service as well as a number + * of utility functions in the {@link org.apache.sling.auth.core.Util} + * class. + * + * @version 1.1 + */ +@Version("1.1") +@Export(optional = "provide:=true") +package org.apache.sling.auth.core; + +import aQute.bnd.annotation.Export; +import aQute.bnd.annotation.Version; + Propchange: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/package-info.java ------------------------------------------------------------------------------ svn:executable = * Added: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java?rev=1198746&view=auto ============================================================================== --- sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java (added) +++ sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java Mon Nov 7 14:25:43 2011 @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Provides API to be implemented by provides of authentication + * mechanisms. The most important interface (and service definition) is + * the {@link org.apache.sling.auth.core.spi.AuthenticationHandler} + * interface with the + * {@link org.apache.sling.auth.core.spi.AbstractAuthenticationHandler} + * being an abstract base implementation from which concrete + * implementations may inherit. + * + * @version 1.0.4 + */ +@Version("1.0.4") +package org.apache.sling.auth.core.spi; + +import aQute.bnd.annotation.Version; + Propchange: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/spi/package-info.java ------------------------------------------------------------------------------ svn:executable = * Added: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java URL: http://svn.apache.org/viewvc/sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java?rev=1198746&view=auto ============================================================================== --- sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java (added) +++ sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java Mon Nov 7 14:25:43 2011 @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Provides the original authentication handler service API initially + * bundled with the Sling Engine bundle. + *

+ * The API in this package is still supported but marked deprecated and + * not further evolving. Please change your implementations to implement + * the new {@link org.apache.sling.auth.core.spi.AuthenticationHandler} + * interface. + * + * @version 2.0.6 + */ +@Version("2.0.6") +package org.apache.sling.engine.auth; + +import aQute.bnd.annotation.Version; + Propchange: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/engine/auth/package-info.java ------------------------------------------------------------------------------ svn:executable = *