mirror of https://github.com/apache/archiva.git
upgrade spring version to 3.0.5.RELEASE
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1103900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b781d2f5f7
commit
36466076b6
|
@ -21,6 +21,7 @@ package org.apache.archiva.repository.scanner;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.lang.annotation.Annotation;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
|
@ -499,5 +500,22 @@ public class RepositoryContentConsumersTest
|
|||
public Resource getResource(String location) {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
public <T> T getBean( Class<T> tClass )
|
||||
throws BeansException
|
||||
{
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
public Map<String, Object> getBeansWithAnnotation( Class<? extends Annotation> aClass )
|
||||
throws BeansException
|
||||
{
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
public <A extends Annotation> A findAnnotationOnBean( String s, Class<A> aClass )
|
||||
{
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -1214,7 +1214,7 @@
|
|||
<jetty.version>6.1.19</jetty.version>
|
||||
<slf4j.version>1.5.8</slf4j.version>
|
||||
<binder.version>0.9</binder.version>
|
||||
<spring.version>2.5.6</spring.version>
|
||||
<spring.version>3.0.5.RELEASE</spring.version>
|
||||
<jackrabbit.version>2.2.5</jackrabbit.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
|
Loading…
Reference in New Issue