You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2014/03/03 08:24:00 UTC

svn commit: r1573465 - in /syncope/trunk: core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java pom.xml

Author: ilgrosso
Date: Mon Mar  3 07:24:00 2014
New Revision: 1573465

URL: http://svn.apache.org/r1573465
Log:
Upgrading to Spring 4

Modified:
    syncope/trunk/core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java
    syncope/trunk/pom.xml

Modified: syncope/trunk/core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java
URL: http://svn.apache.org/viewvc/syncope/trunk/core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java?rev=1573465&r1=1573464&r2=1573465&view=diff
==============================================================================
--- syncope/trunk/core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java (original)
+++ syncope/trunk/core/src/main/java/org/apache/syncope/core/init/ImplementationClassNamesLoader.java Mon Mar  3 07:24:00 2014
@@ -87,7 +87,7 @@ public class ImplementationClassNamesLoa
 
                 try {
                     Class<?> clazz = ClassUtils.forName(metadata.getClassName(), ClassUtils.getDefaultClassLoader());
-                    Set<Class> interfaces = ClassUtils.getAllInterfacesForClassAsSet(clazz);
+                    Set<Class<?>> interfaces = ClassUtils.getAllInterfacesForClassAsSet(clazz);
 
                     if (interfaces.contains(Reportlet.class) && !metadata.isAbstract()) {
                         classNames.get(Type.REPORTLET).add(clazz.getName());

Modified: syncope/trunk/pom.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/pom.xml?rev=1573465&r1=1573464&r2=1573465&view=diff
==============================================================================
--- syncope/trunk/pom.xml (original)
+++ syncope/trunk/pom.xml Mon Mar  3 07:24:00 2014
@@ -317,7 +317,7 @@ under the License.
     <aspectj.version>1.7.4</aspectj.version>
 
     <cxf.version>3.0.0-milestone2</cxf.version>	
-    <spring.version>3.2.8.RELEASE</spring.version>
+    <spring.version>4.0.2.RELEASE</spring.version>
     <spring-security.version>3.2.0.RELEASE</spring-security.version>
     <jackson.version>2.3.1</jackson.version>
     <xstream.version>1.4.6</xstream.version>