that'd be my fault.  fix coming promptly.

On Thu, May 14, 2009 at 6:38 PM, Matt Benson <[email protected]> wrote:
>
> Okay, because I'm such a sweetheart I found the broken spots:
>
> Index: src/test/org/apache/velocity/test/ScopeTestCase.java
> ===================================================================
> --- src/test/org/apache/velocity/test/ScopeTestCase.java        (revision 
> 774859)
> +++ src/test/org/apache/velocity/test/ScopeTestCase.java        (working copy)
> @@ -37,7 +37,7 @@
>     public void setUp() throws Exception
>     {
>         super.setUp();
> -        engine.setProperty(RuntimeConstants.SET_NULL_ALLOWED, true);
> +        engine.setProperty(RuntimeConstants.SET_NULL_ALLOWED, Boolean.TRUE);
>     }
>
>     public void testScopeGetLeakIntoInner()
> Index: src/test/org/apache/velocity/test/StopDirectiveTestCase.java
> ===================================================================
> --- src/test/org/apache/velocity/test/StopDirectiveTestCase.java        
> (revision 774859)
> +++ src/test/org/apache/velocity/test/StopDirectiveTestCase.java        
> (working copy)
> @@ -77,7 +77,7 @@
>         assertEvalEquals("a", "a$!log.startCapture()#stop('woogie!')b");
>
>         info("Log: "+log.getLog());
> -        assertTrue(log.getLog().contains("StopCommand: woogie!"));
> +        assertTrue(log.getLog().indexOf("StopCommand: woogie!") >= 0);
>     }
>
> -}
> \ No newline at end of file
> +}
>
>
> So when these are committed I'll be happy to redeploy the 1.7-SNAPSHOT.
>
> br,
> Matt
>
> --- On Thu, 5/14/09, Will Glass-Husain <[email protected]> wrote:
>
> > From: Will Glass-Husain <[email protected]>
> > Subject: Re: SNAPSHOT deployments
> > To: "Velocity Developers List" <[email protected]>
> > Date: Thursday, May 14, 2009, 4:52 PM
> > This is for v1.7-snapshot or v2.0?
> >
> > v1.7 needs to be JDK 1.4 compilable - that would be a bug
> > if so.
> >
> > WILL
> >
> > On Thu, May 14, 2009 at 2:15 PM, Matt Benson <[email protected]>
> > wrote:
> > >
> > > I asked on tiles-dev about deploying snapshots to the
> > ASF snapshot mvn repo in my capacity as an ASF committer
> > even though I am not a tiles developer.  They were amenable
> > since we were only talking about snapshots; Nathan was okay
> > with the idea of my publishing snapshots for velocity and
> > velocity-tools, on which the new tiles-velocity artifacts
> > depend, as well.  I have now deployed a 1.7-SNAPSHOT
> > version of velocity and plan to follow up with
> > velocity-tools 2.0-SNAPSHOT later unless somebody screams
> > and bites my head off.  Note that in order to successfully
> > build v. I had to use Java 5 since someplace there was an
> > instance of (IIRC) Properties.setProperty() being called
> > with String, boolean arguments which implies autoboxing.
> >  In order to deploy with Java 5 I had to disable the
> > condition checking around line 925 of build.xml (which I did
> > by simply adding 'else="foo"') to the <condition>.
> > >
> > > Cheers,
> > > Matt
> > >
> > >
> > >
> > >
> > >
> > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [email protected]
> > > For additional commands, e-mail: [email protected]
> > >
> > >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [email protected]
> > For additional commands, e-mail: [email protected]
> >
> >
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to