ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [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> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 7 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 8 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 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> |
| 23 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 24 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 25 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <id>configuration</id> |
| 29 | <goals> |
| 30 | <goal>generate</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 34 | <schemaIncludes> |
| 35 | <include>library.xsd</include> |
| 36 | </schemaIncludes> |
| 37 | <generatePackage>edu.uci.ics.asterix.external.library</generatePackage> |
| 38 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 39 | </configuration> |
| 40 | </execution> |
| 41 | </executions> |
| 42 | </plugin> |
| 43 | <plugin> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-jar-plugin</artifactId> |
| 46 | <version>2.2</version> |
| 47 | <configuration> |
| 48 | <includes> |
| 49 | <include>**/*.class</include> |
| 50 | </includes> |
| 51 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 52 | <executions> |
| 53 | <execution> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 54 | <goals> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 55 | <goal>test-jar</goal> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 56 | </goals> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 57 | <phase>package</phase> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 62 | <artifactId>maven-assembly-plugin</artifactId> |
| 63 | <version>2.2-beta-5</version> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <configuration> |
| 67 | <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 68 | <finalName>testlib-zip</finalName> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 69 | </configuration> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 70 | <phase>package</phase> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 71 | <goals> |
| 72 | <goal>attached</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | <dependencies> |
| 80 | <dependency> |
| 81 | <groupId>javax.servlet</groupId> |
| 82 | <artifactId>servlet-api</artifactId> |
| 83 | <version>2.5</version> |
| 84 | <type>jar</type> |
| 85 | <scope>compile</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>junit</groupId> |
| 89 | <artifactId>junit</artifactId> |
| 90 | <version>4.8.1</version> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 94 | <groupId>edu.uci.ics.asterix</groupId> |
| 95 | <artifactId>asterix-om</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 96 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 97 | <type>jar</type> |
| 98 | <scope>compile</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>edu.uci.ics.asterix</groupId> |
| 102 | <artifactId>asterix-runtime</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 103 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 104 | <type>jar</type> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>edu.uci.ics.hyracks</groupId> |
| 109 | <artifactId>algebricks-compiler</artifactId> |
| 110 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 111 | <dependency> |
| 112 | <groupId>com.kenai.nbpwr</groupId> |
| 113 | <artifactId>org-apache-commons-io</artifactId> |
| 114 | <version>1.3.1-201002241208</version> |
| 115 | <scope>test</scope> |
| 116 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 117 | <dependency> |
| 118 | <groupId>org.twitter4j</groupId> |
| 119 | <artifactId>twitter4j-core</artifactId> |
| 120 | <version>2.2.3</version> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.apache.hadoop</groupId> |
| 124 | <artifactId>hadoop-core</artifactId> |
| 125 | <version>0.20.2</version> |
| 126 | <type>jar</type> |
| 127 | <scope>compile</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>net.java.dev.rome</groupId> |
| 131 | <artifactId>rome-fetcher</artifactId> |
| 132 | <version>1.0.0</version> |
| 133 | <type>jar</type> |
| 134 | <scope>compile</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>rome</groupId> |
| 138 | <artifactId>rome</artifactId> |
| 139 | <version>1.0.1-modified-01</version> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>edu.uci.ics.hyracks</groupId> |
| 143 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>jdom</groupId> |
| 147 | <artifactId>jdom</artifactId> |
| 148 | <version>1.0</version> |
| 149 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 150 | </dependencies> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 151 | </project> |