<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>spring-parent</artifactId> <groupId>org.springframework</groupId> <version>2.0-m4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>spring-context</artifactId> <name>Spring context</name> <version>2.0-m4</version> <build> <resources> <resource> <directory>../../src</directory> <includes> <include>org/springframework/context/**</include> <include>org/springframework/jndi/**</include> <include>org/springframework/ui/**</include> <include>org/springframework/validation/**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>../../test</directory> <includes> <include>org/springframework/context/**</include> <include>org/springframework/jndi/**</include> <include>org/springframework/ui/**</include> <include>org/springframework/validation/**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <includes> <include>org/springframework/context/**</include> <include>org/springframework/jndi/**</include> <include>org/springframework/ui/**</include> <include>org/springframework/validation/**</include> </includes> <testIncludes> <include>org/springframework/context/**</include> <include>org/springframework/jndi/**</include> <include>org/springframework/ui/**</include> <include>org/springframework/validation/**</include> <include>org/springframework/beans/factory/access/SingletonBeanFactoryLocatorTests.java</include> <include>org/springframework/beans/factory/config/BeanFactoryPostProcessorTests.java</include> <include>org/springframework/beans/factory/config/PropertyResourceConfigurerTests.java</include> <include>org/springframework/beans/factory/config/ServiceLocatorFactoryBeanTests.java</include> <include>org/springframework/aop/config/AopNamespaceHandlerTests.java</include> <include>org/springframework/aop/config/AopNamespaceHandlerProxyTargetClassTests.java</include> <include>org/springframework/aop/framework/ProxyFactoryBeanTests.java</include> <include>org/springframework/aop/framework/autoproxy/AutoProxyCreatorTests.java</include> <include>org/springframework/aop/framework/autoproxy/BeanNameAutoProxyCreatorTests.java</include> <include>org/springframework/aop/interceptor/ExposeInvocationInterceptorTests.java</include> <include>org/springframework/aop/support/RegexpMethodPointcutAdvisorIntegrationTests.java</include> <include>org/springframework/aop/target/CommonsPoolTargetSourceTests.java</include> <include>org/springframework/aop/target/scope/ScopedProxyFactoryBeanTests.java</include> </testIncludes> <testExcludes> <exclude>org/springframework/context/access/ContextJndiBeanFactoryLocatorTests.java</exclude> <exclude>org/springframework/context/support/ClassPathXmlApplicationContextTests.java</exclude> <exclude>org/springframework/jndi/JndiObjectFactoryBeanTests.java</exclude> <exclude>org/springframework/jndi/SimpleNamingContextTests.java</exclude> </testExcludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spring-aop</artifactId> <version>2.0-m4</version> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>freemarker</groupId> <artifactId>freemarker</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jasperreports</groupId> <artifactId>jasperreports</artifactId> <exclusions> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>itext</groupId> <artifactId>itext</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spring-beans</artifactId> <version>2.0-m4</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>poi</groupId> <artifactId>poi</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <scope>test</scope> <exclusions> <exclusion> <artifactId>xerces</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>aspectj</groupId> <artifactId>aspectjweaver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spring-aop</artifactId> <version>2.0-m4</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>2.0-m4</version> </dependency>
org.springframework:spring-context:2.0-m4