vinayakb | 0c86039 | 2012-10-06 18:47:20 +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 | 5570ea3 | 2012-10-29 11:39:22 +0000 | [diff] [blame^] | 5 | <version>0.2.2-SNAPSHOT</version> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 6 | <name>hyracks-cli</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 7 | |
| 8 | <parent> |
| 9 | <groupId>edu.uci.ics.hyracks</groupId> |
| 10 | <artifactId>hyracks</artifactId> |
vinayakb | 5570ea3 | 2012-10-29 11:39:22 +0000 | [diff] [blame^] | 11 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.apache.maven.plugins</groupId> |
| 18 | <artifactId>maven-compiler-plugin</artifactId> |
| 19 | <version>2.0.2</version> |
| 20 | <configuration> |
| 21 | <source>1.6</source> |
| 22 | <target>1.6</target> |
| 23 | </configuration> |
| 24 | </plugin> |
| 25 | <plugin> |
| 26 | <groupId>org.codehaus.mojo</groupId> |
| 27 | <artifactId>javacc-maven-plugin</artifactId> |
| 28 | <version>2.6</version> |
| 29 | <executions> |
| 30 | <execution> |
| 31 | <id>javacc</id> |
| 32 | <goals> |
| 33 | <goal>javacc</goal> |
| 34 | </goals> |
| 35 | <configuration> |
| 36 | <isStatic>false</isStatic> |
| 37 | </configuration> |
| 38 | </execution> |
| 39 | </executions> |
| 40 | </plugin> |
| 41 | <plugin> |
| 42 | <groupId>org.codehaus.mojo</groupId> |
| 43 | <artifactId>appassembler-maven-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <configuration> |
| 47 | <programs> |
| 48 | <program> |
| 49 | <mainClass>edu.uci.ics.hyracks.cli.Main</mainClass> |
| 50 | <name>hyrackscli</name> |
| 51 | </program> |
| 52 | </programs> |
| 53 | <repositoryLayout>flat</repositoryLayout> |
| 54 | <repositoryName>lib</repositoryName> |
| 55 | </configuration> |
| 56 | <phase>package</phase> |
| 57 | <goals> |
| 58 | <goal>assemble</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <artifactId>maven-assembly-plugin</artifactId> |
| 65 | <version>2.2-beta-5</version> |
| 66 | <executions> |
| 67 | <execution> |
| 68 | <configuration> |
| 69 | <descriptors> |
| 70 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 71 | </descriptors> |
| 72 | </configuration> |
| 73 | <phase>package</phase> |
| 74 | <goals> |
| 75 | <goal>attached</goal> |
| 76 | </goals> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | <dependencies> |
| 83 | <dependency> |
| 84 | <groupId>jline</groupId> |
| 85 | <artifactId>jline</artifactId> |
| 86 | <version>0.9.94</version> |
| 87 | <type>jar</type> |
| 88 | <scope>compile</scope> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>edu.uci.ics.hyracks</groupId> |
| 92 | <artifactId>hyracks-api</artifactId> |
vinayakb | 5570ea3 | 2012-10-29 11:39:22 +0000 | [diff] [blame^] | 93 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 94 | <scope>compile</scope> |
| 95 | </dependency> |
| 96 | </dependencies> |
| 97 | </project> |