Revision: 1698
          http://svn.sourceforge.net/spring-rich-c/?rev=1698&view=rev
Author:   ge0ffrey
Date:     2007-01-27 06:44:36 -0800 (Sat, 27 Jan 2007)

Log Message:
-----------
Upgrade to spring 2.0.2 + fix missing dependencies in petclinic-server

Modified Paths:
--------------
    trunk/spring-richclient/pom.xml
    trunk/spring-richclient/samples/petclinic/server/pom.xml
    trunk/spring-richclient/src/site/apt/development/developmentSetup.apt
    
trunk/spring-richclient/support/src/main/java/org/springframework/binding/validation/support/ValangRichValidator.java

Modified: trunk/spring-richclient/pom.xml
===================================================================
--- trunk/spring-richclient/pom.xml     2007-01-27 13:41:31 UTC (rev 1697)
+++ trunk/spring-richclient/pom.xml     2007-01-27 14:44:36 UTC (rev 1698)
@@ -476,7 +476,7 @@
         </plugins>
     </reporting>
     <properties>
-        <spring.version>2.0</spring.version>
+        <spring.version>2.0.2</spring.version>
     </properties>
 
     <profiles>
@@ -722,12 +722,6 @@
                 <groupId>org.springframework</groupId>
                 <artifactId>spring-remoting</artifactId>
                 <version>${spring.version}</version>
-                <exclusions>
-                    <exclusion>
-                        <groupId>org.springframework</groupId>
-                        <artifactId>spring-web</artifactId>
-                    </exclusion>
-                </exclusions>
             </dependency>
             <dependency>
                 <groupId>org.springframework</groupId>
@@ -739,6 +733,16 @@
                 <artifactId>spring-jdbc</artifactId>
                 <version>${spring.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-web</artifactId>
+                <version>${spring.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-webmvc</artifactId>
+                <version>${spring.version}</version>
+            </dependency>
             <!--<dependency>-->
                 <!--<groupId>org.springframework</groupId>-->
                 <!--<artifactId>spring-mock</artifactId>-->
@@ -936,9 +940,9 @@
 
             <!-- VLDocking -->
             <dependency>
-               <groupId>com.vlsolutions</groupId>
-               <artifactId>vldocking</artifactId>
-               <version>2.1.3</version>
+                <groupId>com.vlsolutions</groupId>
+                <artifactId>vldocking</artifactId>
+                <version>2.1.3</version>
             </dependency>
 
         </dependencies>

Modified: trunk/spring-richclient/samples/petclinic/server/pom.xml
===================================================================
--- trunk/spring-richclient/samples/petclinic/server/pom.xml    2007-01-27 
13:41:31 UTC (rev 1697)
+++ trunk/spring-richclient/samples/petclinic/server/pom.xml    2007-01-27 
14:44:36 UTC (rev 1698)
@@ -32,6 +32,14 @@
             <groupId>org.springframework</groupId>
             <artifactId>spring-remoting</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-webmvc</artifactId>
+        </dependency>
 
         <!-- Remoting -->
         <dependency>

Modified: trunk/spring-richclient/src/site/apt/development/developmentSetup.apt
===================================================================
--- trunk/spring-richclient/src/site/apt/development/developmentSetup.apt       
2007-01-27 13:41:31 UTC (rev 1697)
+++ trunk/spring-richclient/src/site/apt/development/developmentSetup.apt       
2007-01-27 14:44:36 UTC (rev 1698)
@@ -254,6 +254,9 @@
     Open <File>\><Settings>\><Project>\><Version Control>.
     Select <<<Subversion>>> as version control.
 
+    Delete the module <<<spring-richclient-archeypte>>> or just unset it's 
java source dirs,
+    so you can build the entire project with Intellij too.
+
 Maven 2 versus your favorite IDE
 
     After your IDE is configured with maven 2, you 'll use Maven 2 less 
frequently.

Modified: 
trunk/spring-richclient/support/src/main/java/org/springframework/binding/validation/support/ValangRichValidator.java
===================================================================
--- 
trunk/spring-richclient/support/src/main/java/org/springframework/binding/validation/support/ValangRichValidator.java
       2007-01-27 13:41:31 UTC (rev 1697)
+++ 
trunk/spring-richclient/support/src/main/java/org/springframework/binding/validation/support/ValangRichValidator.java
       2007-01-27 14:44:36 UTC (rev 1698)
@@ -33,12 +33,14 @@
 import org.springframework.beans.BeansException;
 import org.springframework.beans.PropertyValue;
 import org.springframework.beans.PropertyValues;
+import org.springframework.beans.TypeMismatchException;
 import org.springframework.binding.form.FormModel;
 import org.springframework.binding.validation.RichValidator;
 import org.springframework.binding.validation.Severity;
 import org.springframework.binding.validation.ValidationMessage;
 import org.springframework.binding.validation.ValidationResults;
 import org.springframework.context.support.MessageSourceAccessor;
+import org.springframework.core.MethodParameter;
 import org.springframework.core.ReflectiveVisitorHelper;
 import org.springframework.richclient.application.ApplicationServicesLocator;
 import org.springframework.util.Assert;
@@ -353,5 +355,14 @@
         public boolean isExtractOldValueForEditor() {
             throw new UnsupportedOperationException("Not implemented");
         }
+
+        public Object convertIfNecessary(Object object, Class aClass) throws 
TypeMismatchException {
+            throw new UnsupportedOperationException("Not implemented");
+        }
+
+        public Object convertIfNecessary(Object object, Class aClass, 
MethodParameter methodParameter)
+                throws TypeMismatchException {
+            throw new UnsupportedOperationException("Not implemented");
+        }
     }
 }
\ No newline at end of file


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
spring-rich-c-cvs mailing list
spring-rich-c-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spring-rich-c-cvs

Reply via email to