blob: 0a59c1fd43f2c109b9d72a32ba3a6b89031e8c52 [file] [log] [blame]
vinayakb7ff0f4a2010-06-17 19:41:17 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb25038842010-07-31 02:12:21 +00004 <artifactId>hyracks-control-nc</artifactId>
vinayakb847471c2010-07-29 22:41:55 +00005 <version>0.1.0</version>
vinayakb7ff0f4a2010-06-17 19:41:17 +00006 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
vinayakb7ff0f4a2010-06-17 19:41:17 +000019 <artifactId>maven-surefire-plugin</artifactId>
20 <configuration>
21 <forkMode>pertest</forkMode>
22 <argLine>-enableassertions</argLine>
23 </configuration>
24 </plugin>
vinayakb7ff0f4a2010-06-17 19:41:17 +000025 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>org.eclipse.jetty</groupId>
30 <artifactId>jetty-server</artifactId>
31 <version>8.0.0.M0</version>
32 <type>jar</type>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>junit</groupId>
37 <artifactId>junit</artifactId>
38 <version>4.8.1</version>
39 <type>jar</type>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
vinayakb7ff0f4a2010-06-17 19:41:17 +000043 <groupId>args4j</groupId>
44 <artifactId>args4j</artifactId>
45 <version>2.0.12</version>
46 <type>jar</type>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.dcache</groupId>
51 <artifactId>dcache-client</artifactId>
52 <version>0.0.1</version>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.wicket</groupId>
57 <artifactId>wicket</artifactId>
58 <version>1.4.7</version>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
vinayakb30098f92010-07-28 18:53:58 +000063 <groupId>jol</groupId>
64 <artifactId>jol</artifactId>
65 <version>1.0.0</version>
66 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
vinayakbd4feea72010-07-29 20:24:35 +000069 <dependency>
70 <groupId>edu.uci.ics.hyracks</groupId>
71 <artifactId>hyracks-api</artifactId>
72 <version>0.1.0</version>
73 <type>jar</type>
74 <scope>compile</scope>
75 </dependency>
vinayakb47714bf2010-07-30 19:49:53 +000076 <dependency>
77 <groupId>edu.uci.ics.hyracks</groupId>
78 <artifactId>hyracks-control-common</artifactId>
79 <version>0.1.0</version>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
vinayakb7ff0f4a2010-06-17 19:41:17 +000083 </dependencies>
84 <reporting>
85 <plugins>
86 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>findbugs-maven-plugin</artifactId>
89 <version>2.0.1</version>
90 </plugin>
91 </plugins>
92 </reporting>
93</project>