blob: 545f609d28b0e6e082698c36c15ff7ed934ffbec [file] [log] [blame]
vinayakb32c38692010-08-12 22:25:49 +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>
4 <artifactId>hyracks-cli</artifactId>
vinayakb2b1ef152010-08-19 20:09:01 +00005 <version>0.1.1-SNAPSHOT</version>
vinayakb32c38692010-08-12 22:25:49 +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.codehaus.mojo</groupId>
19 <artifactId>javacc-maven-plugin</artifactId>
20 <version>2.6</version>
21 <executions>
22 <execution>
23 <id>javacc</id>
24 <goals>
25 <goal>javacc</goal>
26 </goals>
27 <configuration>
28 <isStatic>false</isStatic>
29 </configuration>
30 </execution>
31 </executions>
32 </plugin>
33 <plugin>
34 <groupId>org.codehaus.mojo</groupId>
35 <artifactId>appassembler-maven-plugin</artifactId>
36 <executions>
37 <execution>
38 <configuration>
39 <programs>
40 <program>
41 <mainClass>edu.uci.ics.hyracks.cli.Main</mainClass>
42 <name>hyrackscli</name>
43 </program>
44 </programs>
45 <repositoryLayout>flat</repositoryLayout>
46 <repositoryName>lib</repositoryName>
47 </configuration>
48 <phase>package</phase>
49 <goals>
50 <goal>assemble</goal>
51 </goals>
52 </execution>
53 </executions>
54 </plugin>
55 </plugins>
56 </build>
57 <dependencies>
58 <dependency>
59 <groupId>jline</groupId>
60 <artifactId>jline</artifactId>
61 <version>0.9.94</version>
62 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>hyracks-api</artifactId>
vinayakb2b1ef152010-08-19 20:09:01 +000068 <version>0.1.1-SNAPSHOT</version>
vinayakb32c38692010-08-12 22:25:49 +000069 <scope>compile</scope>
70 </dependency>
71 </dependencies>
72</project>