89 lines
2.9 KiB
XML
89 lines
2.9 KiB
XML
<?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.webflow</groupId>
|
|
<artifactId>org.springframework.binding</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Spring Binding</name>
|
|
<version>2.0.4.RELEASE</version>
|
|
<dependencies>
|
|
<!-- global dependencies -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.beans</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.context</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.core</artifactId>
|
|
<version>${spring.version}</version>
|
|
</dependency>
|
|
<!-- build time only dependencies -->
|
|
<dependency>
|
|
<groupId>org.ognl</groupId>
|
|
<artifactId>com.springsource.org.ognl</artifactId>
|
|
<version>2.6.9</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>com.springsource.javax.el</artifactId>
|
|
<version>2.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- test time dependencies -->
|
|
<dependency>
|
|
<groupId>org.apache.log4j</groupId>
|
|
<artifactId>com.springsource.org.apache.log4j</artifactId>
|
|
<version>1.2.15</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>com.springsource.org.easymock</artifactId>
|
|
<version>2.3.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>com.springsource.junit</artifactId>
|
|
<version>3.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.el</groupId>
|
|
<artifactId>com.springsource.org.jboss.el</artifactId>
|
|
<version>2.0.0.GA</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
SpringSource Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
</repository>
|
|
<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>
|
|
<properties>
|
|
<spring.version>2.5.5.A</spring.version>
|
|
</properties>
|
|
</project> |