Add pom.xml
Showing
2 changed files
with
69 additions
and
0 deletions
pom.xml
0 → 100644
1 | <?xml version="1.0"?> | ||
2 | <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"> | ||
3 | <modelVersion>4.0.0</modelVersion> | ||
4 | <parent> | ||
5 | <groupId>com.brainfood</groupId> | ||
6 | <artifactId>driverup-parent</artifactId> | ||
7 | <version>1.0-dev</version> | ||
8 | </parent> | ||
9 | <artifactId>direct-control-servlet</artifactId> | ||
10 | <name>Direct Control Servlet</name> | ||
11 | <build> | ||
12 | <sourceDirectory>src</sourceDirectory> | ||
13 | </build> | ||
14 | <dependencies> | ||
15 | <dependency> | ||
16 | <groupId>ofbiz</groupId> | ||
17 | <artifactId>base</artifactId> | ||
18 | <version>1.0</version> | ||
19 | </dependency> | ||
20 | <dependency> | ||
21 | <groupId>ofbiz</groupId> | ||
22 | <artifactId>entity</artifactId> | ||
23 | <version>1.0</version> | ||
24 | </dependency> | ||
25 | <dependency> | ||
26 | <groupId>ofbiz</groupId> | ||
27 | <artifactId>service</artifactId> | ||
28 | <version>1.0</version> | ||
29 | </dependency> | ||
30 | <dependency> | ||
31 | <groupId>org.codehaus.groovy.modules.http-builder</groupId> | ||
32 | <artifactId>http-builder</artifactId> | ||
33 | <version>0.7.1</version> | ||
34 | </dependency> | ||
35 | <dependency> | ||
36 | <version>1.0</version> | ||
37 | <artifactId>rhino</artifactId> | ||
38 | <groupId>ofbiz</groupId> | ||
39 | </dependency> | ||
40 | <dependency> | ||
41 | <version>3.0</version> | ||
42 | <artifactId>api</artifactId> | ||
43 | <groupId>servlet</groupId> | ||
44 | </dependency> | ||
45 | <dependency> | ||
46 | <version>5.4.3</version> | ||
47 | <artifactId>javolution</artifactId> | ||
48 | <groupId>javolution</groupId> | ||
49 | </dependency> | ||
50 | <dependency> | ||
51 | <groupId>junit</groupId> | ||
52 | <artifactId>junit</artifactId> | ||
53 | <scope>test</scope> | ||
54 | <version>4.12</version> | ||
55 | </dependency> | ||
56 | <dependency> | ||
57 | <groupId>org.apache.commons</groupId> | ||
58 | <artifactId>commons-csv</artifactId> | ||
59 | <version>1.0-SNAPSHOT</version> | ||
60 | </dependency> | ||
61 | <dependency> | ||
62 | <groupId>org.codehaus.groovy</groupId> | ||
63 | <artifactId>groovy</artifactId> | ||
64 | <version>1.8.3</version> | ||
65 | <type>jar</type> | ||
66 | </dependency> | ||
67 | </dependencies> | ||
68 | </project> |
-
Please register or sign in to post a comment