2013-06-09 12:24:27 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>cn.ac.iscas</groupId>
|
|
|
|
<artifactId>haflow</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>haflow</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>3.2.3.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>3.2.3.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>3.2.3.RELEASE</version>
|
|
|
|
</dependency>
|
2013-06-17 16:34:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>3.2.3.RELEASE</version>
|
|
|
|
</dependency>
|
2013-06-09 12:24:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
<version>1.9.12</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.25</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>4.3.0.Beta3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
|
|
|
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
|
|
|
<version>1.0.0.Draft-16</version>
|
|
|
|
</dependency>
|
2013-06-17 16:34:09 +08:00
|
|
|
|
2013-06-09 12:24:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-core</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
</dependency>
|
2013-06-18 14:05:45 +08:00
|
|
|
|
2013-06-09 12:24:27 +08:00
|
|
|
<dependency>
|
2013-06-17 16:34:09 +08:00
|
|
|
<groupId>com.yahoo.oozie</groupId>
|
|
|
|
<artifactId>oozie-client</artifactId>
|
2013-06-09 12:24:27 +08:00
|
|
|
<version>3.3.2</version>
|
|
|
|
</dependency>
|
2013-06-25 00:57:11 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
2013-06-09 12:24:27 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles></profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2013-06-21 16:56:14 +08:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2013-06-09 12:24:27 +08:00
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2013-06-21 16:56:14 +08:00
|
|
|
<version>9.0.3.v20130506</version>
|
2013-06-09 12:24:27 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|