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