Author: wsmoak
Date: Fri Oct 17 14:10:11 2008
New Revision: 705752
URL: http://svn.apache.org/viewvc?rev=705752&view=rev
Log:
Add an inter-module dependency to test build order.
Modified:
continuum/sandbox/flat-example/flat-webapp/pom.xml
Modified: continuum/sandbox/flat-example/flat-webapp/pom.xml
URL: http://svn.apache.org/viewvc/continuum/sandbox/flat-example/flat-webapp/pom.xml?rev=705752&r1=705751&r2=705752&view=diff
==============================================================================
--- continuum/sandbox/flat-example/flat-webapp/pom.xml (original)
+++ continuum/sandbox/flat-example/flat-webapp/pom.xml Fri Oct 17 14:10:11 2008
@@ -15,6 +15,11 @@
<dependencies>
<dependency>
+ <groupId>com.example.flat</groupId>
+ <artifactId>flat-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
|