You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by David Blevins <da...@visi.com> on 2005/07/10 04:39:13 UTC

Re: svn commit: r209655 - in /geronimo/trunk/modules/assembly: maven.xml

On Thu, Jul 07, 2005 at 09:40:29PM -0000, ammulder@apache.org wrote:
> Author: ammulder
> Date: Thu Jul  7 14:40:27 2005
> New Revision: 209655
> 
> URL: http://svn.apache.org/viewcvs?rev=209655&view=rev
> Log:
> Add PK generator dependency
> 
> Modified:
>     geronimo/trunk/modules/assembly/maven.xml
[...]
> Modified: geronimo/trunk/modules/assembly/maven.xml
> URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/assembly/maven.xml?rev=209655&r1=209654&r2=209655&view=diff
> ==============================================================================
> --- geronimo/trunk/modules/assembly/maven.xml (original)
> +++ geronimo/trunk/modules/assembly/maven.xml Thu Jul  7 14:40:27 2005
> @@ -136,8 +136,11 @@
>              <ant:fileset dir="${project.root}/modules/client-builder">
>                  <ant:include name="src/schema/*.xsd"/>
>              </ant:fileset>
> -            <ant:fileset dir="${project.root}">
> -                <ant:include name="openejb/modules/openejb-builder/src/schema/openejb-jar.xsd"/>
> +            <ant:fileset dir="${project.root}/openejb/modules/pkgen-builder">
> +                <ant:include name="src/schema/*.xsd"/>
> +            </ant:fileset>
> +            <ant:fileset dir="${project.root}/openejb/modules/openejb-builder">
> +                <ant:include name="src/schema/openejb-jar.xsd"/>
>              </ant:fileset>
>              <ant:fileset dir="src/etc"/>
>          </ant:copy>

This breaks the build if someone tries to build against a jar of openejb (no source).

-David

Re: svn commit: r209655 - in /geronimo/trunk/modules/assembly: maven.xml

Posted by Aaron Mulder <am...@alumni.princeton.edu>.
	OK, I'll take a look at it.

Aaron

On Sat, 9 Jul 2005, David Blevins wrote:
> I'll branch as soon as you get that in.

Re: svn commit: r209655 - in /geronimo/trunk/modules/assembly: maven.xml

Posted by David Blevins <da...@visi.com>.
On Sat, Jul 09, 2005 at 10:43:51PM -0400, Aaron Mulder wrote:
> On Sat, 9 Jul 2005, David Blevins wrote:
> > This breaks the build if someone tries to build against a jar of openejb
> > (no source).
> 
> 	How do you think we should work around that?  I guess we could use
> an Ant unzip command to extract the schema from the binary...  We
> definitely want to have the openejb-pkgen.xsd schema in the schema output
> directory.

That could work.  

I'll branch as soon as you get that in.

-David

Re: svn commit: r209655 - in /geronimo/trunk/modules/assembly: maven.xml

Posted by Aaron Mulder <am...@alumni.princeton.edu>.
On Sat, 9 Jul 2005, David Blevins wrote:
> This breaks the build if someone tries to build against a jar of openejb
> (no source).

	How do you think we should work around that?  I guess we could use
an Ant unzip command to extract the schema from the binary...  We
definitely want to have the openejb-pkgen.xsd schema in the schema output
directory.

Aaron