You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by ra...@apache.org on 2005/07/29 16:09:56 UTC

svn commit: r226379 - in /jakarta/taglibs/trunks-proper: build.properties.sample build.xml

Author: rahul
Date: Fri Jul 29 07:09:54 2005
New Revision: 226379

URL: http://svn.apache.org/viewcvs?rev=226379&view=rev
Log:
Add RDC taglib to the taglibs proper build.

Glenn - Please update the build.properties on the box that runs the nightlies. Thanks!

Modified:
    jakarta/taglibs/trunks-proper/build.properties.sample
    jakarta/taglibs/trunks-proper/build.xml

Modified: jakarta/taglibs/trunks-proper/build.properties.sample
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/trunks-proper/build.properties.sample?rev=226379&r1=226378&r2=226379&view=diff
==============================================================================
--- jakarta/taglibs/trunks-proper/build.properties.sample (original)
+++ jakarta/taglibs/trunks-proper/build.properties.sample Fri Jul 29 07:09:54 2005
@@ -31,6 +31,12 @@
 # http://jakarta.apache.org/tomcat/ as a Tomcat 4.0 binary download.
 servlet23.jar=${base.dir}/../jakarta-servletapi-4/dist/lib/servlet.jar
 
+# The default jar file for the Servlet 2.4 and JSP 2.0 API classes.
+# Used for building taglibs which use JSP 2.0 features.
+# The Servlet 2.4 and JSP 2.0 jar can be obtained from 
+# http://jakarta.apache.org/tomcat/ as a Tomcat 5.x binary download.
+servlet24.jar=${base.dir}/../jakarta-servletapi-5/dist/lib/servlet.jar
+
 # The remaining properties are for supporting taglibs which
 # require the use of additional Java API's.
 
@@ -158,13 +164,25 @@
 # jmstags requires the commons-messenger API
 commons-messenger.jar=${base.dir}/../commons-messenger/commons-messenger.jar
 
-# the Cache Taglib requires (and other taglibs in the future may require)
-# the Standard Taglib's standard.jar distribution
-#standard.jar=
-
 # string requires the commons-lang API
 commons-lang.jar=${base.dir}/../commons-lang/commons-lang.jar
 
+# RDC requires the commons-el API
+commons-el.jar=${base.dir}/../commons-el/commons-el.jar
+
+# RDC requires the commons-logging API
+commons-logging.jar=${base.dir}/../commons-logging/commons-logging.jar
+
+# Taglibs such as the RDC Taglib and Cache Taglib require
+# the Standard Taglib's standard.jar distribution
+# You can obtain the Jakarta Taglibs Standard distribution from
+# http://jakarta.apache.org/taglibs/
+standard.jar=${base.dir}/../jakarta-taglibs/dist/standard/standard.jar
+
+# The RDC Taglib requires Struts 1.2.x for sample applications
+# You can download Struts 1.2 from
+# http://struts.apache.org/
+struts12.jar=${base.dir}/../struts/dist/struts.jar
 
 #
 # PROJECT STANDARD PROPERTIES

Modified: jakarta/taglibs/trunks-proper/build.xml
URL: http://svn.apache.org/viewcvs/jakarta/taglibs/trunks-proper/build.xml?rev=226379&r1=226378&r2=226379&view=diff
==============================================================================
--- jakarta/taglibs/trunks-proper/build.xml (original)
+++ jakarta/taglibs/trunks-proper/build.xml Fri Jul 29 07:09:54 2005
@@ -173,8 +173,12 @@
     <ant dir="./cache" target="dist"/>
   </target>
 
+  <target name="rdc">
+    <ant dir="./rdc" target="dist"/>
+  </target>
+
   <!-- *********************** Overall Build Command ********************** -->
-  <target name="dist" depends="prepare,dist.documentation,bsf,input,request,session,response,application,page,datetime,regexp,jndi,dbtags,scrape,mailer,i18n,io,xtags,log,ultradev4,random,benchmark,standard,string,jmstags,cache"/>
+  <target name="dist" depends="prepare,dist.documentation,bsf,input,request,session,response,application,page,datetime,regexp,jndi,dbtags,scrape,mailer,i18n,io,xtags,log,ultradev4,random,benchmark,standard,string,jmstags,cache,rdc"/>
 
   <!-- *********************** Clean Command ****************************** -->
 



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org


Re: Changes to proper nightly build (was Re: svn commit: r226379 - )

Posted by Glenn Nielsen <gl...@mail.more.net>.
I have removed the RDC taglib from the sandbox nightly build and
moved it to the official taglib nightly build.

I have removed the application, page, request, response, session, and
dbtags taglibs from the nightly build.

Regards,

Glenn

On Fri, Jul 29, 2005 at 06:00:16PM -0400, Rahul P Akolkar wrote:
> Glenn Nielsen <gl...@mail.more.net> wrote on 07/29/2005 05:30:18 PM:
> > Rahul,
> > 
> > So does the nightly build for RDC need to be removed from
> > the sandbox nightly build and moved to the official taglib
> > nightly build?
> 
> Yes. 
> 
> I have made all the changes as far as the SVN repository is concerned, 
> including both sandbox and proper build.xml files. An SVN update (ideally, 
> a clean checkout, but thats probably overkill) of trunks-proper and 
> trunks-sandbox should do all the moving for you.
> 
> > 
> > And there are some new jars required for RDC to build?
> 
> No more than what RDCs needed in sandbox. I wasn't sure if the jars listed 
> below were defined in your build properties file for the "official" 
> taglibs nightly build since they weren't in the build.properties.sample in 
> trunks-proper.
> 
> Thanks for your time!
> -Rahul

---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org


Re: Changes to proper nightly build (was Re: svn commit: r226379 - )

Posted by Rahul P Akolkar <ak...@us.ibm.com>.
Glenn Nielsen <gl...@mail.more.net> wrote on 07/29/2005 05:30:18 PM:
> Rahul,
> 
> So does the nightly build for RDC need to be removed from
> the sandbox nightly build and moved to the official taglib
> nightly build?

Yes. 

I have made all the changes as far as the SVN repository is concerned, 
including both sandbox and proper build.xml files. An SVN update (ideally, 
a clean checkout, but thats probably overkill) of trunks-proper and 
trunks-sandbox should do all the moving for you.

> 
> And there are some new jars required for RDC to build?

No more than what RDCs needed in sandbox. I wasn't sure if the jars listed 
below were defined in your build properties file for the "official" 
taglibs nightly build since they weren't in the build.properties.sample in 
trunks-proper.

Thanks for your time!
-Rahul

> 
> Thanks,
> 
> Glenn
> 
> On Fri, Jul 29, 2005 at 10:18:59AM -0400, Rahul P Akolkar wrote:
> > rahul@apache.org wrote on 07/29/2005 10:09:56 AM:
> > > Author: rahul
> > > Date: Fri Jul 29 07:09:54 2005
> > > New Revision: 226379
> > > 
> > > URL: http://svn.apache.org/viewcvs?rev=226379&view=rev
> > > Log:
> > > Add RDC taglib to the taglibs proper build.
> > > 
> > > Glenn - Please update the build.properties on the box that runs the 
> > > nightlies. Thanks!
> > <snip/>
> > 
> > Glenn -
> > 
> > I think the primary culprits that comes to mind for tonight's RDC 
build 
> > are:
> > 1) servlet24.jar
> > 2) commons-el.jar
> > 3) commons-logging.jar
> > 4) struts12.jar
> > 
> > Please migrate the relevant bits from your sandbox build properties 
file, 
> > if and as needed.
> > 
> > Thanks for setting up the new builds after the SVN migration,
> > -Rahul
> ----------------------------------------------------------------------
> Glenn Nielsen             glenn@more.net | /* Spelin donut madder    |
> MOREnet System Programming               |  * if iz ina coment.      |
> Missouri Research and Education Network  |  */                       |
> ----------------------------------------------------------------------
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org
> 

Re: Changes to proper nightly build (was Re: svn commit: r226379 - )

Posted by Glenn Nielsen <gl...@mail.more.net>.
Rahul,

So does the nightly build for RDC need to be removed from
the sandbox nightly build and moved to the official taglib
nightly build?

And there are some new jars required for RDC to build?

Thanks,

Glenn

On Fri, Jul 29, 2005 at 10:18:59AM -0400, Rahul P Akolkar wrote:
> rahul@apache.org wrote on 07/29/2005 10:09:56 AM:
> > Author: rahul
> > Date: Fri Jul 29 07:09:54 2005
> > New Revision: 226379
> > 
> > URL: http://svn.apache.org/viewcvs?rev=226379&view=rev
> > Log:
> > Add RDC taglib to the taglibs proper build.
> > 
> > Glenn - Please update the build.properties on the box that runs the 
> > nightlies. Thanks!
> <snip/>
> 
> Glenn -
> 
> I think the primary culprits that comes to mind for tonight's RDC build 
> are:
> 1) servlet24.jar
> 2) commons-el.jar
> 3) commons-logging.jar
> 4) struts12.jar
> 
> Please migrate the relevant bits from your sandbox build properties file, 
> if and as needed.
> 
> Thanks for setting up the new builds after the SVN migration,
> -Rahul
----------------------------------------------------------------------
Glenn Nielsen             glenn@more.net | /* Spelin donut madder    |
MOREnet System Programming               |  * if iz ina coment.      |
Missouri Research and Education Network  |  */                       |
----------------------------------------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org


Changes to proper nightly build (was Re: svn commit: r226379 - )

Posted by Rahul P Akolkar <ak...@us.ibm.com>.
rahul@apache.org wrote on 07/29/2005 10:09:56 AM:
> Author: rahul
> Date: Fri Jul 29 07:09:54 2005
> New Revision: 226379
> 
> URL: http://svn.apache.org/viewcvs?rev=226379&view=rev
> Log:
> Add RDC taglib to the taglibs proper build.
> 
> Glenn - Please update the build.properties on the box that runs the 
> nightlies. Thanks!
<snip/>

Glenn -

I think the primary culprits that comes to mind for tonight's RDC build 
are:
1) servlet24.jar
2) commons-el.jar
3) commons-logging.jar
4) struts12.jar

Please migrate the relevant bits from your sandbox build properties file, 
if and as needed.

Thanks for setting up the new builds after the SVN migration,
-Rahul