You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by dd...@apache.org on 2007/01/26 15:28:45 UTC

svn commit: r500261 - /tiles/examples/trunk/tiles-showcase/pom.xml

Author: ddewolf
Date: Fri Jan 26 06:28:44 2007
New Revision: 500261

URL: http://svn.apache.org/viewvc?view=rev&rev=500261
Log:
Having showcase leverage master pom and references tiles-core properly

Modified:
    tiles/examples/trunk/tiles-showcase/pom.xml

Modified: tiles/examples/trunk/tiles-showcase/pom.xml
URL: http://svn.apache.org/viewvc/tiles/examples/trunk/tiles-showcase/pom.xml?view=diff&rev=500261&r1=500260&r2=500261
==============================================================================
--- tiles/examples/trunk/tiles-showcase/pom.xml (original)
+++ tiles/examples/trunk/tiles-showcase/pom.xml Fri Jan 26 06:28:44 2007
@@ -28,20 +28,24 @@
 
    <parent>
       <groupId>org.apache.tiles</groupId>
-      <artifactId>tiles-parent</artifactId>
-      <version>2.0-SNAPSHOT</version>
+      <artifactId>tiles-master</artifactId>
+      <version>1-SNAPSHOT</version>
    </parent>
 
    <modelVersion>4.0.0</modelVersion>
    <artifactId>tiles-showcase</artifactId>
    <packaging>war</packaging>
    <name>Tiles Showcase web application</name>
+
+   <properties>
+     <version.tiles>2.0-SNAPSHOT</version.tiles>
+   </properties>
    
    <dependencies>
       <dependency>
          <groupId>${pom.groupId}</groupId>
          <artifactId>tiles-core</artifactId>
-         <version>${pom.version}</version>
+         <version>${version.tiles}</version>
       </dependency>
       <dependency>
          <groupId>javax.servlet</groupId>