jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>asterix</artifactId> |
| 6 | <groupId>edu.uci.ics.asterix</groupId> |
| 7 | <version>0.0.4-SNAPSHOT</version> |
| 8 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | <artifactId>asterix-runtime</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 10 | |
| 11 | |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <version>2.0.2</version> |
| 18 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
buyingyi | 8a61a18 | 2013-03-03 08:41:25 +0000 | [diff] [blame] | 21 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | </configuration> |
| 23 | </plugin> |
diegogiorgini@gmail.com | 2de6d34 | 2013-02-16 02:41:45 +0000 | [diff] [blame] | 24 | <plugin> |
| 25 | <groupId>edu.uci.ics.asterix</groupId> |
| 26 | <artifactId>lexer-generator-maven-plugin</artifactId> |
| 27 | <version>0.1</version> |
| 28 | <configuration> |
| 29 | <grammarFile>src/main/resources/adm.grammar</grammarFile> |
| 30 | <outputDir>${project.build.directory}/generated-sources/edu/uci/ics/asterix/runtime/operators/file/adm</outputDir> |
| 31 | </configuration> |
| 32 | <executions> |
| 33 | <execution> |
| 34 | <id>generate-lexer</id> |
| 35 | <phase>generate-sources</phase> |
| 36 | <goals> |
| 37 | <goal>generate-lexer</goal> |
| 38 | </goals> |
| 39 | </execution> |
| 40 | </executions> |
| 41 | </plugin> |
| 42 | <plugin> |
| 43 | <groupId>org.codehaus.mojo</groupId> |
| 44 | <artifactId>build-helper-maven-plugin</artifactId> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>add-source</id> |
| 48 | <phase>generate-sources</phase> |
| 49 | <goals> |
| 50 | <goal>add-source</goal> |
| 51 | </goals> |
| 52 | <configuration> |
| 53 | <sources> |
| 54 | <source>${project.build.directory}/generated-sources/</source> |
| 55 | </sources> |
| 56 | </configuration> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | <pluginManagement> |
| 62 | <plugins> |
| 63 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 64 | <plugin> |
| 65 | <groupId>org.eclipse.m2e</groupId> |
| 66 | <artifactId>lifecycle-mapping</artifactId> |
| 67 | <version>1.0.0</version> |
| 68 | <configuration> |
| 69 | <lifecycleMappingMetadata> |
| 70 | <pluginExecutions> |
| 71 | <pluginExecution> |
| 72 | <pluginExecutionFilter> |
| 73 | <groupId> |
| 74 | edu.uci.ics.asterix |
| 75 | </groupId> |
| 76 | <artifactId> |
| 77 | lexer-generator-maven-plugin |
| 78 | </artifactId> |
| 79 | <versionRange> |
| 80 | [0.1,) |
| 81 | </versionRange> |
| 82 | <goals> |
| 83 | <goal>generate-lexer</goal> |
| 84 | </goals> |
| 85 | </pluginExecutionFilter> |
| 86 | <action> |
| 87 | <execute> |
| 88 | <runOnIncremental>false</runOnIncremental> |
| 89 | </execute> |
| 90 | </action> |
| 91 | </pluginExecution> |
| 92 | </pluginExecutions> |
| 93 | </lifecycleMappingMetadata> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 98 | </build> |
| 99 | |
| 100 | <dependencies> |
| 101 | <dependency> |
| 102 | <groupId>edu.uci.ics.asterix</groupId> |
| 103 | <artifactId>asterix-om</artifactId> |
| 104 | <version>0.0.4-SNAPSHOT</version> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 109 | <artifactId>fuzzyjoin-core</artifactId> |
| 110 | <version>0.0.3</version> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>edu.uci.ics.hyracks</groupId> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 115 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 116 | </dependency> |
| 117 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 118 | <groupId>edu.uci.ics.asterix</groupId> |
| 119 | <artifactId>asterix-transactions</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 120 | <version>0.0.4-SNAPSHOT</version> |
| 121 | <scope>compile</scope> |
| 122 | </dependency> |
| 123 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 124 | <groupId>org.twitter4j</groupId> |
| 125 | <artifactId>twitter4j-core</artifactId> |
| 126 | <version>2.2.3</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 127 | </dependency> |
| 128 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 129 | <groupId>org.apache.hadoop</groupId> |
| 130 | <artifactId>hadoop-core</artifactId> |
| 131 | <version>0.20.2</version> |
| 132 | <type>jar</type> |
| 133 | <scope>compile</scope> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 134 | </dependency> |
| 135 | </dependencies> |
| 136 | |
| 137 | </project> |
| 138 | |