Hi.

I'm not sure if this has come up already on this thread (haven't read it so thoroughly and bit of topic too ;) ), but I just thought that it could be wise and handy that all the version number of dependencies and like so should be introduced as variables so that they could be easily overridden in custom build.properties.

Like the izpack standalone-compiler version is out of date and the code in installer/project.xml is like this

   <dependencies>
     <dependency>
       <id>standalone-compiler</id>
       <groupId>izpack</groupId>
       <version>3.6.1</version>
     </dependency>
   </dependencies>


if it would changed to something like this

izpack.version=3.8.0

.
.
.

   <dependencies>
     <dependency>
       <id>standalone-compiler</id>
       <groupId>izpack</groupId>
       <version>${izpack.version}</version>
     </dependency>
   </dependencies>


Probably most of the versions are defined like this as is in ${jetspeed.project.home}/project.properties, but using them consistently throughout the project would make the updating to a new component more simple.

Sorry to bother if this is already under consider.

-Mikko

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to