Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 76627 invoked from network); 21 Apr 2009 15:19:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Apr 2009 15:19:43 -0000 Received: (qmail 54290 invoked by uid 500); 21 Apr 2009 15:19:43 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 54158 invoked by uid 500); 21 Apr 2009 15:19:42 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 54141 invoked by uid 99); 21 Apr 2009 15:19:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2009 15:19:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 21 Apr 2009 15:19:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9802B23888A2; Tue, 21 Apr 2009 15:19:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r767184 - in /geronimo/sandbox/blueprint: blueprint-api/pom.xml blueprint-bundle/pom.xml blueprint-core/pom.xml blueprint-itests/pom.xml blueprint-sample/pom.xml pom.xml Date: Tue, 21 Apr 2009 15:19:21 -0000 To: scm@geronimo.apache.org From: gnodet@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090421151921.9802B23888A2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gnodet Date: Tue Apr 21 15:19:20 2009 New Revision: 767184 URL: http://svn.apache.org/viewvc?rev=767184&view=rev Log: Use dependency management, create source jars and javadocs under the 'deploy' profile Modified: geronimo/sandbox/blueprint/blueprint-api/pom.xml geronimo/sandbox/blueprint/blueprint-bundle/pom.xml geronimo/sandbox/blueprint/blueprint-core/pom.xml geronimo/sandbox/blueprint/blueprint-itests/pom.xml geronimo/sandbox/blueprint/blueprint-sample/pom.xml geronimo/sandbox/blueprint/pom.xml Modified: geronimo/sandbox/blueprint/blueprint-api/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-api/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-api/pom.xml (original) +++ geronimo/sandbox/blueprint/blueprint-api/pom.xml Tue Apr 21 15:19:20 2009 @@ -25,6 +25,15 @@ blueprint-api jar Apache Geronimo Blueprint API + + + + org.apache.felix + org.osgi.core + provided + + + @@ -57,11 +66,4 @@ - - - org.apache.felix - org.osgi.core - provided - - Modified: geronimo/sandbox/blueprint/blueprint-bundle/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-bundle/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-bundle/pom.xml (original) +++ geronimo/sandbox/blueprint/blueprint-bundle/pom.xml Tue Apr 21 15:19:20 2009 @@ -25,6 +25,18 @@ blueprint-bundle bundle Apache Geronimo Blueprint Bundle + + + + org.apache.geronimo + blueprint-core + + + org.apache.xbean + xbean-reflect + + + @@ -54,17 +66,156 @@ net.sf.cglib.proxy, net.sf.cglib.reflect, - + + true + + org.apache.maven.plugins + maven-shade-plugin + + + package + + shade + + + + + org.apache.xbean:xbean-reflect + asm:asm-all + cglib:cglib + org.apache.geronimo:blueprint-core + org.apache.geronimo:blueprint-api + + + + + org.apache.xbean:xbean-reflect + + org/** + + + + asm:asm-all + + org/** + + + + cglib:cglib + + net/** + + + + org.apache.geronimo:blueprint-core + + org/** + + + + org.apache.geronimo:blueprint-api + + org/** + + + + ${createSourcesJar} + true + true + + + + - - - org.apache.geronimo - blueprint-core - ${version} - provided - - + + + + deploy + + true + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-sources + generate-sources + + unpack + + + + + org.apache.xbean + xbean-reflect + sources + + + asm + asm-all + sources + + + cglib + cglib + sources + + + org.apache.geronimo + blueprint-api + sources + + + org.apache.geronimo + blueprint-core + sources + + + ${project.build.directory}/sources + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + process-classes + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + package + package + + jar + + + + + 128m + 512m + ${project.build.directory}/sources + + + + + + + Modified: geronimo/sandbox/blueprint/blueprint-core/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-core/pom.xml (original) +++ geronimo/sandbox/blueprint/blueprint-core/pom.xml Tue Apr 21 15:19:20 2009 @@ -32,12 +32,10 @@ org.apache.geronimo blueprint-api - ${version} org.apache.xbean xbean-reflect - 3.6-SNAPSHOT org.apache.felix @@ -50,17 +48,14 @@ cglib cglib - 2.2 asm asm-all - 3.1 org.slf4j slf4j-api - 1.5.6 Modified: geronimo/sandbox/blueprint/blueprint-itests/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-itests/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-itests/pom.xml (original) +++ geronimo/sandbox/blueprint/blueprint-itests/pom.xml Tue Apr 21 15:19:20 2009 @@ -31,19 +31,16 @@ org.apache.servicemix.kernel.testing org.apache.servicemix.kernel.testing.support - 1.1.0 test org.apache.geronimo blueprint-bundle - ${pom.version} test org.apache.geronimo blueprint-sample - ${pom.version} test Modified: geronimo/sandbox/blueprint/blueprint-sample/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-sample/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/blueprint-sample/pom.xml (original) +++ geronimo/sandbox/blueprint/blueprint-sample/pom.xml Tue Apr 21 15:19:20 2009 @@ -54,9 +54,8 @@ provided - org.apache.felix + org.apache.geronimo blueprint-api - ${version} Modified: geronimo/sandbox/blueprint/pom.xml URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/pom.xml?rev=767184&r1=767183&r2=767184&view=diff ============================================================================== --- geronimo/sandbox/blueprint/pom.xml (original) +++ geronimo/sandbox/blueprint/pom.xml Tue Apr 21 15:19:20 2009 @@ -34,6 +34,31 @@ + org.apache.geronimo + blueprint-api + ${version} + + + org.apache.geronimo + blueprint-core + ${version} + + + org.apache.geronimo + blueprint-bundle + ${version} + + + org.apache.geronimo + blueprint-sample + ${version} + + + org.apache.geronimo + blueprint-itests + ${version} + + org.apache.felix org.osgi.core 1.2.0 @@ -48,6 +73,31 @@ junit 3.8.2 + + org.apache.xbean + xbean-reflect + 3.6-SNAPSHOT + + + cglib + cglib + 2.2 + + + asm + asm-all + 3.1 + + + org.slf4j + slf4j-api + 1.5.6 + + + org.apache.servicemix.kernel.testing + org.apache.servicemix.kernel.testing.support + 1.1.0 + @@ -63,6 +113,48 @@ + + + deploy + + deploy + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + process-classes + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + package + package + + jar + + + + + 128m + 512m + ${project.build.directory}/sources + + + + + + + blueprint-api blueprint-core