|
|
|
<?xml version="1.0"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>org.springframework.beans</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Spring Core Abstractions and Utilities</name>
|
|
|
|
<version>3.0.0.M1</version>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>com.springsource.repository.bundles.external</id>
|
|
|
|
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
|
|
|
|
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>org.springframework.core</artifactId>
|
|
|
|
<version>${pom.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>com.springsource.javax.el</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.cglib</groupId>
|
|
|
|
<artifactId>com.springsource.net.sf.cglib</artifactId>
|
|
|
|
<version>2.1.3</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|