69 lines
2.5 KiB
XML
69 lines
2.5 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.js</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Spring JavaScript</name>
|
|
<version>2.0.3.RELEASE</version>
|
|
<dependencies>
|
|
<!-- global dependencies -->
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>2.5.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>2.5.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>2.5.5</version>
|
|
</dependency>
|
|
<!-- build time only dependencies -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-api</artifactId>
|
|
<version>2.0.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-core</artifactId>
|
|
<version>2.0.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tiles</groupId>
|
|
<artifactId>tiles-jsp</artifactId>
|
|
<version>2.0.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>2.5.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-webmvc</artifactId>
|
|
<version>2.5.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |