vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 1 | <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> |
vinayakb | bfc33cf | 2010-09-18 18:31:39 +0000 | [diff] [blame^] | 5 | <version>0.1.3-SNAPSHOT</version> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>hyracks</artifactId> |
vinayakb | bfc33cf | 2010-09-18 18:31:39 +0000 | [diff] [blame^] | 10 | <version>0.1.3-SNAPSHOT</version> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>2.0.2</version> |
| 19 | <configuration> |
| 20 | <source>1.6</source> |
| 21 | <target>1.6</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.codehaus.mojo</groupId> |
| 26 | <artifactId>javacc-maven-plugin</artifactId> |
| 27 | <version>2.6</version> |
| 28 | <executions> |
| 29 | <execution> |
| 30 | <id>javacc</id> |
| 31 | <goals> |
| 32 | <goal>javacc</goal> |
| 33 | </goals> |
| 34 | <configuration> |
| 35 | <isStatic>false</isStatic> |
| 36 | </configuration> |
| 37 | </execution> |
| 38 | </executions> |
| 39 | </plugin> |
| 40 | <plugin> |
| 41 | <groupId>org.codehaus.mojo</groupId> |
| 42 | <artifactId>appassembler-maven-plugin</artifactId> |
| 43 | <executions> |
| 44 | <execution> |
| 45 | <configuration> |
| 46 | <programs> |
| 47 | <program> |
| 48 | <mainClass>edu.uci.ics.hyracks.cli.Main</mainClass> |
| 49 | <name>hyrackscli</name> |
| 50 | </program> |
| 51 | </programs> |
| 52 | <repositoryLayout>flat</repositoryLayout> |
| 53 | <repositoryName>lib</repositoryName> |
| 54 | </configuration> |
| 55 | <phase>package</phase> |
| 56 | <goals> |
| 57 | <goal>assemble</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | <dependencies> |
| 65 | <dependency> |
| 66 | <groupId>jline</groupId> |
| 67 | <artifactId>jline</artifactId> |
| 68 | <version>0.9.94</version> |
| 69 | <type>jar</type> |
| 70 | <scope>compile</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>edu.uci.ics.hyracks</groupId> |
| 74 | <artifactId>hyracks-api</artifactId> |
vinayakb | bfc33cf | 2010-09-18 18:31:39 +0000 | [diff] [blame^] | 75 | <version>0.1.3-SNAPSHOT</version> |
vinayakb | 32c3869 | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 76 | <scope>compile</scope> |
| 77 | </dependency> |
| 78 | </dependencies> |
| 79 | </project> |