I have been trying to remove the need for all of those properties. I think a few of these are fine... just as long as those properties are never used in child modules. But most people copy past the deps, so these properties are bound to leak.

--jason


On Oct 4, 2006, at 9:40 AM, [EMAIL PROTECTED] wrote:

Author: dain
Date: Wed Oct  4 09:40:49 2006
New Revision: 452927

URL: http://svn.apache.org/viewvc?view=rev&rev=452927
Log:
Move openejb version number to a single shared property which makes automcatically changing it in the weekly build much easier

Modified:
    geronimo/server/trunk/pom.xml

Modified: geronimo/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml? view=diff&rev=452927&r1=452926&r2=452927 ====================================================================== ========
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Wed Oct  4 09:40:49 2006
@@ -46,6 +46,11 @@

     <properties>
         <!--
+ Having a single well named property makes automatic updating for the weekly build much easier.
+        -->
+        <openejbVersion>2.2-incubating-SNAPSHOT</openejbVersion>
+
+        <!--
HACK: Used by uddi-db to execute the sql plugin with the Derby driver.
         -->
         <derbyVersion>10.1.3.1</derbyVersion>
@@ -585,31 +590,31 @@
             <dependency>
                 <groupId>org.apache.openejb</groupId>
                 <artifactId>openejb-core</artifactId>
-                <version>2.2-incubating-SNAPSHOT</version>
+                <version>${openejbVersion}</version>
             </dependency>

             <dependency>
                 <groupId>org.apache.openejb</groupId>
                 <artifactId>openejb-builder</artifactId>
-                <version>2.2-incubating-SNAPSHOT</version>
+                <version>${openejbVersion}</version>
             </dependency>

             <dependency>
                 <groupId>org.apache.openejb</groupId>
                 <artifactId>openejb-pkgen-builder</artifactId>
-                <version>2.2-incubating-SNAPSHOT</version>
+                <version>${openejbVersion}</version>
             </dependency>

             <dependency>
                 <groupId>org.apache.openejb</groupId>
                 <artifactId>openejb-yoko</artifactId>
-                <version>2.2-incubating-SNAPSHOT</version>
+                <version>${openejbVersion}</version>
             </dependency>

             <dependency>
                 <groupId>org.apache.openejb</groupId>
                 <artifactId>openejb-sunorb</artifactId>
-                <version>2.2-incubating-SNAPSHOT</version>
+                <version>${openejbVersion}</version>
             </dependency>

             <dependency>



Reply via email to