Author: gerdogdu
Date: Tue May 18 13:35:17 2010
New Revision: 945645

URL: http://svn.apache.org/viewvc?rev=945645&view=rev
Log:
Update for using JSF 1.2 and EL 1.0

Added:
    
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/
    
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
   (with props)
Modified:
    openwebbeans/trunk/samples/ejb-sample/pom.xml
    
openwebbeans/trunk/samples/ejb-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
    openwebbeans/trunk/samples/ejb-telephone/pom.xml
    
openwebbeans/trunk/samples/ejb-telephone/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
    openwebbeans/trunk/samples/tomcat-sample/pom.xml

Modified: openwebbeans/trunk/samples/ejb-sample/pom.xml
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/ejb-sample/pom.xml?rev=945645&r1=945644&r2=945645&view=diff
==============================================================================
--- openwebbeans/trunk/samples/ejb-sample/pom.xml (original)
+++ openwebbeans/trunk/samples/ejb-sample/pom.xml Tue May 18 13:35:17 2010
@@ -153,6 +153,12 @@
                        <version>${project.version}</version>
                </dependency>
                
+               <!-- Validator -->
+               <dependency>
+                       <groupId>org.apache.geronimo.specs</groupId>
+                       <artifactId>geronimo-validation_1.0_spec</artifactId>
+               </dependency>
+               
                <!-- Interceptor API -->
                <dependency>
                        <groupId>org.apache.geronimo.specs</groupId>

Modified: 
openwebbeans/trunk/samples/ejb-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/ejb-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties?rev=945645&r1=945644&r2=945645&view=diff
==============================================================================
--- 
openwebbeans/trunk/samples/ejb-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 (original)
+++ 
openwebbeans/trunk/samples/ejb-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 Tue May 18 13:35:17 2010
@@ -32,4 +32,6 @@ org.apache.webbeans.spi.deployer.useEjbM
 #use resource service
 
org.apache.webbeans.spi.ResourceInjectionService=org.apache.webbeans.ejb.resource.OpenEjbResourceInjectionService
 
-org.apache.webbeans.spi.adaptor.ELAdaptor=org.apache.webbeans.el10.EL10Adaptor
\ No newline at end of file
+org.apache.webbeans.spi.adaptor.ELAdaptor=org.apache.webbeans.el10.EL10Adaptor
+
+org.apache.webbeans.spi.JNDIService=org.apache.webbeans.corespi.se.DefaultJndiService
\ No newline at end of file

Modified: openwebbeans/trunk/samples/ejb-telephone/pom.xml
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/ejb-telephone/pom.xml?rev=945645&r1=945644&r2=945645&view=diff
==============================================================================
--- openwebbeans/trunk/samples/ejb-telephone/pom.xml (original)
+++ openwebbeans/trunk/samples/ejb-telephone/pom.xml Tue May 18 13:35:17 2010
@@ -163,7 +163,13 @@
                        <groupId>org.apache.geronimo.specs</groupId>
                        <artifactId>geronimo-jpa_2.0_spec</artifactId>
                        <scope>provided</scope>
-               </dependency>           
+               </dependency>   
+               
+               <!-- Validator -->
+               <dependency>
+                       <groupId>org.apache.geronimo.specs</groupId>
+                       <artifactId>geronimo-validation_1.0_spec</artifactId>
+               </dependency>
 
        </dependencies>
 

Modified: 
openwebbeans/trunk/samples/ejb-telephone/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/ejb-telephone/src/main/resources/META-INF/openwebbeans/openwebbeans.properties?rev=945645&r1=945644&r2=945645&view=diff
==============================================================================
--- 
openwebbeans/trunk/samples/ejb-telephone/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 (original)
+++ 
openwebbeans/trunk/samples/ejb-telephone/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 Tue May 18 13:35:17 2010
@@ -29,4 +29,5 @@ org.apache.webbeans.application.useJSF2E
 
 #use resource service
 
org.apache.webbeans.spi.ResourceService=org.apache.webbeans.ejb.resource.OpenEjbResourceInjectionService
-org.apache.webbeans.spi.adaptor.ELAdaptor=org.apache.webbeans.el10.EL10Adaptor
\ No newline at end of file
+org.apache.webbeans.spi.adaptor.ELAdaptor=org.apache.webbeans.el10.EL10Adaptor
+org.apache.webbeans.spi.JNDIService=org.apache.webbeans.corespi.se.DefaultJndiService
\ No newline at end of file

Modified: openwebbeans/trunk/samples/tomcat-sample/pom.xml
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/tomcat-sample/pom.xml?rev=945645&r1=945644&r2=945645&view=diff
==============================================================================
--- openwebbeans/trunk/samples/tomcat-sample/pom.xml (original)
+++ openwebbeans/trunk/samples/tomcat-sample/pom.xml Tue May 18 13:35:17 2010
@@ -78,6 +78,12 @@
                        <scope>provided</scope>
                </dependency>                   
 
+               <dependency>
+                       <groupId>org.apache.openwebbeans</groupId>
+                       <artifactId>openwebbeans-el10</artifactId>
+                       <version>${project.version}</version>
+               </dependency>                   
+
        </dependencies>
        
        <build>

Added: 
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties?rev=945645&view=auto
==============================================================================
--- 
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 (added)
+++ 
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
 Tue May 18 13:35:17 2010
@@ -0,0 +1,27 @@
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements.  See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership.  The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied.  See the License for the
+#specific language governing permissions and limitations
+#under the License.
+#---------------------------------------------------------------
+# The default configuration for OpenWebBeans
+#
+# The default configuration is intended for a JDK and a simple ServletContainer
+# like jetty, resin or tomcat.
+# 
+#---------------------------------------------------------------
+
+#general configuration section
+org.apache.webbeans.spi.adaptor.ELAdaptor=org.apache.webbeans.el10.EL10Adaptor
+

Propchange: 
openwebbeans/trunk/samples/tomcat-sample/src/main/resources/META-INF/openwebbeans/openwebbeans.properties
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to