You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by Sanjiva Weerawarana <sa...@opensource.lk> on 2006/02/17 10:42:27 UTC

building XmlSchema

ARGH. The current default maven target downloads a 6MB test set .. can
we please make that respect maven.test.skip? For some of us that takes
just too long to download! Thanks ..

Sanjiva.


Re: building XmlSchema

Posted by Srinath Perera <he...@gmail.com>.
+1

On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
> ARGH. The current default maven target downloads a 6MB test set .. can
> we please make that respect maven.test.skip? For some of us that takes
> just too long to download! Thanks ..
>
> Sanjiva.
>
>


--
============================
Srinath Perera:
   http://www.cs.indiana.edu/~hperera/
   http://www.bloglines.com/blog/hemapani

Re: building XmlSchema

Posted by Dan Diephouse <da...@envoisolutions.com>.
I think we just passed 72 hours... Thanks,
- Dan

Davanum Srinivas wrote:
> once the vote ends, pmc chair can grant karma. usual practice is 72
> hours for the vote to complete.
>
> thanks,
> dims
>
> On 2/19/06, Dan Diephouse <da...@envoisolutions.com> wrote:
>   
>> Finally made a patch for this, but I'm not sure now - should I put it in
>> JIRA or wait until my karma goes through? I can never figure out how
>> Apache infrastructure works - who is responsible for granting me karma?
>> If you need it now, just change your maven.xml preGoal to be like so:
>>
>> <preGoal name="test:compile">
>>         <j:if test="${maven.test.skip != 'true'}">
>>             <u:file var="file"
>> name="${maven.build.dir}/xmlschema2002-01-16"/>
>>             <j:if test="${!file.exists()}">
>>                 <echo>Downloading 6MB XML Schema test suite. This make
>> take a few minutes...</echo>
>>                 <ant:get dest="${maven.build.dir}/xsts-2002-01-16.tar.gz"
>>
>> src="http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2002-01-16/xsts-2002-01-16.tar.gz"/>
>>
>>                 <ant:gunzip
>> src="${maven.build.dir}/xsts-2002-01-16.tar.gz"/>
>>                 <ant:untar src="${maven.build.dir}/xsts-2002-01-16.tar"
>> dest="${maven.build.dir}"/>
>>             </j:if>
>>         </j:if>
>>     </preGoal>
>>
>> - Dan
>>
>> Davanum Srinivas wrote:
>>     
>>> Let me check...
>>>
>>>
>>> On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
>>>
>>>       
>>>> On Fri, 2006-02-17 at 23:08 -0500, Davanum Srinivas wrote:
>>>>
>>>>         
>>>>> Use the ant build.xml :)
>>>>>
>>>>>           
>>>> The build needs work .. ant clean is getting another jar :(.
>>>>
>>>> ant build.xml gave me an error :(.
>>>>
>>>> Sanjiva.
>>>>
>>>>
>>>>
>>>>
>>>>         
>>> --
>>> Davanum Srinivas : http://wso2.com/blogs/
>>>
>>>       
>> --
>> Dan Diephouse
>> Envoi Solutions LLC
>> http://envoisolutions.com
>> http://netzooid.com/blog
>>
>>
>>     
>
>
> --
> Davanum Srinivas : http://wso2.com/blogs/
>   


-- 
Dan Diephouse
Envoi Solutions LLC
http://envoisolutions.com
http://netzooid.com/blog


Re: building XmlSchema

Posted by Davanum Srinivas <da...@gmail.com>.
once the vote ends, pmc chair can grant karma. usual practice is 72
hours for the vote to complete.

thanks,
dims

On 2/19/06, Dan Diephouse <da...@envoisolutions.com> wrote:
> Finally made a patch for this, but I'm not sure now - should I put it in
> JIRA or wait until my karma goes through? I can never figure out how
> Apache infrastructure works - who is responsible for granting me karma?
> If you need it now, just change your maven.xml preGoal to be like so:
>
> <preGoal name="test:compile">
>         <j:if test="${maven.test.skip != 'true'}">
>             <u:file var="file"
> name="${maven.build.dir}/xmlschema2002-01-16"/>
>             <j:if test="${!file.exists()}">
>                 <echo>Downloading 6MB XML Schema test suite. This make
> take a few minutes...</echo>
>                 <ant:get dest="${maven.build.dir}/xsts-2002-01-16.tar.gz"
>
> src="http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2002-01-16/xsts-2002-01-16.tar.gz"/>
>
>                 <ant:gunzip
> src="${maven.build.dir}/xsts-2002-01-16.tar.gz"/>
>                 <ant:untar src="${maven.build.dir}/xsts-2002-01-16.tar"
> dest="${maven.build.dir}"/>
>             </j:if>
>         </j:if>
>     </preGoal>
>
> - Dan
>
> Davanum Srinivas wrote:
> > Let me check...
> >
> >
> > On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
> >
> >> On Fri, 2006-02-17 at 23:08 -0500, Davanum Srinivas wrote:
> >>
> >>> Use the ant build.xml :)
> >>>
> >> The build needs work .. ant clean is getting another jar :(.
> >>
> >> ant build.xml gave me an error :(.
> >>
> >> Sanjiva.
> >>
> >>
> >>
> >>
> >
> >
> > --
> > Davanum Srinivas : http://wso2.com/blogs/
> >
>
>
> --
> Dan Diephouse
> Envoi Solutions LLC
> http://envoisolutions.com
> http://netzooid.com/blog
>
>


--
Davanum Srinivas : http://wso2.com/blogs/

Re: building XmlSchema

Posted by Dan Diephouse <da...@envoisolutions.com>.
Finally made a patch for this, but I'm not sure now - should I put it in 
JIRA or wait until my karma goes through? I can never figure out how 
Apache infrastructure works - who is responsible for granting me karma? 
If you need it now, just change your maven.xml preGoal to be like so:

<preGoal name="test:compile">
        <j:if test="${maven.test.skip != 'true'}">
            <u:file var="file" 
name="${maven.build.dir}/xmlschema2002-01-16"/>
            <j:if test="${!file.exists()}">
                <echo>Downloading 6MB XML Schema test suite. This make 
take a few minutes...</echo>
                <ant:get dest="${maven.build.dir}/xsts-2002-01-16.tar.gz"
                    
src="http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2002-01-16/xsts-2002-01-16.tar.gz"/>
               
                <ant:gunzip 
src="${maven.build.dir}/xsts-2002-01-16.tar.gz"/>
                <ant:untar src="${maven.build.dir}/xsts-2002-01-16.tar" 
dest="${maven.build.dir}"/>
            </j:if>
        </j:if>
    </preGoal>

- Dan

Davanum Srinivas wrote:
> Let me check...
>
>
> On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
>   
>> On Fri, 2006-02-17 at 23:08 -0500, Davanum Srinivas wrote:
>>     
>>> Use the ant build.xml :)
>>>       
>> The build needs work .. ant clean is getting another jar :(.
>>
>> ant build.xml gave me an error :(.
>>
>> Sanjiva.
>>
>>
>>
>>     
>
>
> --
> Davanum Srinivas : http://wso2.com/blogs/
>   


-- 
Dan Diephouse
Envoi Solutions LLC
http://envoisolutions.com
http://netzooid.com/blog


Re: building XmlSchema

Posted by Davanum Srinivas <da...@gmail.com>.
Let me check...


On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
> On Fri, 2006-02-17 at 23:08 -0500, Davanum Srinivas wrote:
> > Use the ant build.xml :)
>
> The build needs work .. ant clean is getting another jar :(.
>
> ant build.xml gave me an error :(.
>
> Sanjiva.
>
>
>


--
Davanum Srinivas : http://wso2.com/blogs/

Re: building XmlSchema

Posted by Sanjiva Weerawarana <sa...@opensource.lk>.
On Fri, 2006-02-17 at 23:08 -0500, Davanum Srinivas wrote:
> Use the ant build.xml :)

The build needs work .. ant clean is getting another jar :(.

ant build.xml gave me an error :(.

Sanjiva.



Re: building XmlSchema

Posted by Davanum Srinivas <da...@gmail.com>.
Use the ant build.xml :)

On 2/17/06, Sanjiva Weerawarana <sa...@opensource.lk> wrote:
> On Fri, 2006-02-17 at 12:19 -0500, Dan Diephouse wrote:
> >
> > Definitely. I'll get this patched when the vote is final if someone
> > doesn't get to it before then (and if the vote passes ;-))..
>
> Can you please please send a patch in the meantime? Its killing me :(.
>
> Sanjiva.
>
>


--
Davanum Srinivas : http://wso2.com/blogs/

Re: building XmlSchema

Posted by Sanjiva Weerawarana <sa...@opensource.lk>.
On Fri, 2006-02-17 at 12:19 -0500, Dan Diephouse wrote:
>   
> Definitely. I'll get this patched when the vote is final if someone 
> doesn't get to it before then (and if the vote passes ;-))..

Can you please please send a patch in the meantime? Its killing me :(.

Sanjiva.


Re: building XmlSchema

Posted by Dan Diephouse <da...@envoisolutions.com>.
Sanjiva Weerawarana wrote:
> ARGH. The current default maven target downloads a 6MB test set .. can
> we please make that respect maven.test.skip? For some of us that takes
> just too long to download! Thanks ..
>
> Sanjiva.
>
>   
Definitely. I'll get this patched when the vote is final if someone 
doesn't get to it before then (and if the vote passes ;-))..
- Dan

-- 
Dan Diephouse
Envoi Solutions LLC
http://envoisolutions.com
http://netzooid.com/blog