You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2009/04/20 00:40:04 UTC

svn commit: r766542 - /incubator/openwebbeans/trunk/samples/guess/pom.xml

Author: struberg
Date: Sun Apr 19 22:40:03 2009
New Revision: 766542

URL: http://svn.apache.org/viewvc?rev=766542&view=rev
Log:
OWB-88 OWB-91 creating plugin mechanism and moving out JSF and JPA into own modules

Modified:
    incubator/openwebbeans/trunk/samples/guess/pom.xml

Modified: incubator/openwebbeans/trunk/samples/guess/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/guess/pom.xml?rev=766542&r1=766541&r2=766542&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/samples/guess/pom.xml (original)
+++ incubator/openwebbeans/trunk/samples/guess/pom.xml Sun Apr 19 22:40:03 2009
@@ -32,33 +32,47 @@
 		<finalName>guess</finalName>
 	</build>
 
-	<dependencies>
-	  <dependency>
-	     <groupId>junit</groupId>
-             <artifactId>junit</artifactId>
-	     <scope>test</scope>
-	  </dependency>
-	  
-          <dependency>
-	     <groupId>com.sun.facelets</groupId>
-	     <artifactId>jsf-facelets</artifactId>
-	     <version>1.1.11</version>
-	  </dependency>
-	  
-          <dependency>
-	     <groupId>org.apache.openwebbeans</groupId>
-	     <artifactId>openwebbeans-api</artifactId>
-	     <version>1.0.0-incubating-SNAPSHOT</version>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>com.sun.facelets</groupId>
+            <artifactId>jsf-facelets</artifactId>
+            <version>1.1.11</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.openwebbeans</groupId>
+            <artifactId>openwebbeans-api</artifactId>
+            <version>1.0.0-incubating-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.openwebbeans</groupId>
+            <artifactId>openwebbeans-jsf</artifactId>
+            <version>1.0.0-incubating-SNAPSHOT</version>
             <scope>provided</scope>
-	 </dependency>
-         
-         <dependency>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.openwebbeans</groupId>
+            <artifactId>openwebbeans-jpa</artifactId>
+            <version>1.0.0-incubating-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
             <groupId>org.apache.myfaces.core</groupId>
             <artifactId>myfaces-api</artifactId>
             <scope>provided</scope>
         </dependency>
-        
-	<dependency>
+
+        <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-servlet_2.5_spec</artifactId>
             <scope>provided</scope>
@@ -73,33 +87,45 @@
 	<profiles>
 		<profile>
 			<id>jetty</id>
-            <dependencies>
-                
-		<dependency>
+                        <dependencies>
+            
+                <dependency>
                     <groupId>org.apache.openwebbeans</groupId>
                     <artifactId>openwebbeans-api</artifactId>
                     <version>1.0.0-incubating-SNAPSHOT</version>
                     <scope>compile</scope> <!-- we need this if we run in jetty! -->
                 </dependency>
-                
-		<dependency>
+            
+                <dependency>
                     <groupId>org.apache.openwebbeans</groupId>
                     <artifactId>openwebbeans-impl</artifactId>
                     <version>1.0.0-incubating-SNAPSHOT</version>
                 </dependency>
+            
+                <dependency>
+                    <groupId>org.apache.openwebbeans</groupId>
+                    <artifactId>openwebbeans-jsf</artifactId>
+                    <version>1.0.0-incubating-SNAPSHOT</version>
+                </dependency>
+            
+                <dependency>
+                    <groupId>org.apache.openwebbeans</groupId>
+                    <artifactId>openwebbeans-jpa</artifactId>
+                    <version>1.0.0-incubating-SNAPSHOT</version>
+                </dependency>
 
                 <dependency>
                     <groupId>org.apache.openjpa</groupId>
                     <artifactId>openjpa</artifactId>
                     <version>1.2.0</version>
                 </dependency>
-
+            
                 <dependency>
                     <groupId>hsqldb</groupId>
                     <artifactId>hsqldb</artifactId>
                     <version>1.8.0.7</version>
                 </dependency>
-
+            
                 <dependency>
                     <groupId>org.apache.myfaces.core</groupId>
                     <artifactId>myfaces-api</artifactId>