Return-Path: Delivered-To: apmail-aries-commits-archive@www.apache.org Received: (qmail 83288 invoked from network); 27 Feb 2011 21:06:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Feb 2011 21:06:43 -0000 Received: (qmail 20081 invoked by uid 500); 27 Feb 2011 21:06:43 -0000 Delivered-To: apmail-aries-commits-archive@aries.apache.org Received: (qmail 19990 invoked by uid 500); 27 Feb 2011 21:06:43 -0000 Mailing-List: contact commits-help@aries.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aries.apache.org Delivered-To: mailing list commits@aries.apache.org Received: (qmail 19982 invoked by uid 99); 27 Feb 2011 21:06:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Feb 2011 21:06:43 +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; Sun, 27 Feb 2011 21:06:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5C1572388C73; Sun, 27 Feb 2011 21:05:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1075147 [23/23] - in /aries/tags/blueprint-0.3: ./ blueprint-annotation-api/ blueprint-annotation-api/src/ blueprint-annotation-api/src/main/ blueprint-annotation-api/src/main/java/ blueprint-annotation-api/src/main/java/org/ blueprint-ann... Date: Sun, 27 Feb 2011 21:05:20 -0000 To: commits@aries.apache.org From: zoe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110227210525.5C1572388C73@eris.apache.org> Added: aries/tags/blueprint-0.3/blueprint-testquiescebundle/pom.xml URL: http://svn.apache.org/viewvc/aries/tags/blueprint-0.3/blueprint-testquiescebundle/pom.xml?rev=1075147&view=auto ============================================================================== --- aries/tags/blueprint-0.3/blueprint-testquiescebundle/pom.xml (added) +++ aries/tags/blueprint-0.3/blueprint-testquiescebundle/pom.xml Sun Feb 27 21:05:07 2011 @@ -0,0 +1,52 @@ + + + 4.0.0 + Blueprint Test Quiesce Bundle, tests the blueprint participant for the quiesce functionality. + + org.apache.aries.blueprint + blueprint + 0.3 + + + org.apache.aries.blueprint.testquiescebundle + Apache Aries Blueprint Test Quiesce Bundle + bundle + + + + org.apache.aries.blueprint.testquiescebundle.Activator + + + + + + org.eclipse + osgi + provided + + + org.apache.aries.blueprint + org.apache.aries.blueprint.api + + + org.apache.aries.blueprint + org.apache.aries.blueprint.core + + + + Added: aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/Activator.java URL: http://svn.apache.org/viewvc/aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/Activator.java?rev=1075147&view=auto ============================================================================== --- aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/Activator.java (added) +++ aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/Activator.java Sun Feb 27 21:05:07 2011 @@ -0,0 +1,30 @@ +/** + * 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. + */ +package org.apache.aries.blueprint.testquiescebundle; + +import org.osgi.framework.BundleActivator; +import org.osgi.framework.BundleContext; + +public class Activator implements BundleActivator { + + public void start(BundleContext context) { + } + + public void stop(BundleContext context) { + } + +} Added: aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/TestBean.java URL: http://svn.apache.org/viewvc/aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/TestBean.java?rev=1075147&view=auto ============================================================================== --- aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/TestBean.java (added) +++ aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/java/org/apache/aries/blueprint/testquiescebundle/TestBean.java Sun Feb 27 21:05:07 2011 @@ -0,0 +1,25 @@ +/** + * 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. + */ +package org.apache.aries.blueprint.testquiescebundle; + +public class TestBean +{ + public void sleep(int time) throws InterruptedException + { + Thread.sleep(time); + } +} Added: aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/resources/OSGI-INF/blueprint/config.xml URL: http://svn.apache.org/viewvc/aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/resources/OSGI-INF/blueprint/config.xml?rev=1075147&view=auto ============================================================================== --- aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/resources/OSGI-INF/blueprint/config.xml (added) +++ aries/tags/blueprint-0.3/blueprint-testquiescebundle/src/main/resources/OSGI-INF/blueprint/config.xml Sun Feb 27 21:05:07 2011 @@ -0,0 +1,31 @@ + + + + + + + + + + + + Added: aries/tags/blueprint-0.3/pom.xml URL: http://svn.apache.org/viewvc/aries/tags/blueprint-0.3/pom.xml?rev=1075147&view=auto ============================================================================== --- aries/tags/blueprint-0.3/pom.xml (added) +++ aries/tags/blueprint-0.3/pom.xml Sun Feb 27 21:05:07 2011 @@ -0,0 +1,208 @@ + + + + + org.apache.aries + java5-parent + 0.3 + ../parent/default-parent/java5-parent/pom.xml + + + 4.0.0 + org.apache.aries.blueprint + blueprint + Apache Aries Blueprint + 0.3 + pom + + + Implementation of the Blueprint Container Specification + + + + scm:svn:http://svn.apache.org/repos/asf/aries/tags/blueprint-0.3 + scm:svn:https://svn.apache.org/repos/asf/aries/tags/blueprint-0.3 + http://svn.apache.org/viewvc/aries/tags/blueprint-0.3 + + + + + + + org.apache.aries.blueprint + org.apache.aries.blueprint.api + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.core + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.cm + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.annotation.api + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.annotation.impl + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.sample + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.testbundlea + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.testbundleb + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.testquiescebundle + ${project.version} + + + org.apache.aries.blueprint + org.apache.aries.blueprint.itests + ${project.version} + + + + + org.apache.aries + org.apache.aries.util + 0.3 + + + + org.apache.felix + org.apache.felix.configadmin + 1.2.4 + + + org.apache.felix + org.osgi.core + + + org.apache.felix + org.osgi.compendium + + + + + asm + asm-all + 3.2 + + + org.apache.xbean + xbean-finder + 3.7 + + + org.apache.aries.quiesce + org.apache.aries.quiesce.api + 0.3 + + + org.apache.aries.testsupport + org.apache.aries.testsupport.unit + 0.3 + + + org.apache.aries.proxy + org.apache.aries.proxy.api + 0.3 + + + org.apache.aries.proxy + org.apache.aries.proxy + 0.3 + test + + + + + + + junit + junit + test + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.0 + + false + deploy + -Papache-release -DskipTests=true + + + + + + + + blueprint-api + blueprint-core + blueprint-cm + blueprint-bundle + blueprint-sample + blueprint-annotation-api + blueprint-annotation-impl + blueprint-sample-annotation + blueprint-testbundlea + blueprint-testbundleb + blueprint-testquiescebundle + blueprint-itests + blueprint-annotation-itest + + + +