8b8d6146 by Tim Boudreau

Add pom.xml

1 parent 8cf89907
build
/target/
\ No newline at end of file
......
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.brainfood</groupId>
<artifactId>driverup-parent</artifactId>
<version>1.0-dev</version>
</parent>
<artifactId>direct-control-servlet</artifactId>
<name>Direct Control Servlet</name>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
<dependencies>
<dependency>
<groupId>ofbiz</groupId>
<artifactId>base</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>ofbiz</groupId>
<artifactId>entity</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>ofbiz</groupId>
<artifactId>service</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy.modules.http-builder</groupId>
<artifactId>http-builder</artifactId>
<version>0.7.1</version>
</dependency>
<dependency>
<version>1.0</version>
<artifactId>rhino</artifactId>
<groupId>ofbiz</groupId>
</dependency>
<dependency>
<version>3.0</version>
<artifactId>api</artifactId>
<groupId>servlet</groupId>
</dependency>
<dependency>
<version>5.4.3</version>
<artifactId>javolution</artifactId>
<groupId>javolution</groupId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.8.3</version>
<type>jar</type>
</dependency>
</dependencies>
</project>