Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-transactions</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 24 | <licenses> |
| 25 | <license> |
| 26 | <name>Apache License, Version 2.0</name> |
| 27 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 28 | <distribution>repo</distribution> |
| 29 | <comments>A business-friendly OSS license</comments> |
| 30 | </license> |
| 31 | </licenses> |
| 32 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 38 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 39 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 40 | <source>1.7</source> |
| 41 | <target>1.7</target> |
| 42 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 43 | </configuration> |
| 44 | </plugin> |
Till Westmann | 0d31d5c | 2013-09-28 21:59:14 -0700 | [diff] [blame] | 45 | <plugin> |
| 46 | <groupId>edu.uci.ics.asterix</groupId> |
| 47 | <artifactId>record-manager-generator-maven-plugin</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 48 | <version>0.8.7-SNAPSHOT</version> |
Till Westmann | 0d31d5c | 2013-09-28 21:59:14 -0700 | [diff] [blame] | 49 | <configuration> |
Till Westmann | 655aa72 | 2013-10-16 11:20:38 -0700 | [diff] [blame] | 50 | <debug>false</debug> |
Till Westmann | 7b1b22a | 2013-11-04 11:21:30 -0800 | [diff] [blame] | 51 | <inputFiles> |
| 52 | <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Job.json</param> |
| 53 | <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Resource.json</param> |
| 54 | <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Request.json</param> |
| 55 | </inputFiles> |
Till Westmann | 28fbd9a | 2013-11-04 12:38:49 -0800 | [diff] [blame] | 56 | <packageName>edu.uci.ics.asterix.transaction.management.service.locking</packageName> |
Till Westmann | 0d31d5c | 2013-09-28 21:59:14 -0700 | [diff] [blame] | 57 | </configuration> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <id>generate-record-manager</id> |
| 61 | <phase>generate-sources</phase> |
| 62 | <goals> |
| 63 | <goal>generate-record-manager</goal> |
| 64 | </goals> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.codehaus.mojo</groupId> |
| 70 | <artifactId>build-helper-maven-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 71 | <version>1.9</version> |
Till Westmann | 0d31d5c | 2013-09-28 21:59:14 -0700 | [diff] [blame] | 72 | <executions> |
| 73 | <execution> |
| 74 | <id>add-source</id> |
| 75 | <phase>generate-sources</phase> |
| 76 | <goals> |
| 77 | <goal>add-source</goal> |
| 78 | </goals> |
| 79 | <configuration> |
| 80 | <sources> |
| 81 | <source>${project.build.directory}/generated-sources/java/</source> |
| 82 | </sources> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | </plugins> |
| 88 | |
| 89 | </build> |
| 90 | |
| 91 | <dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>edu.uci.ics.hyracks</groupId> |
| 94 | <artifactId>hyracks-storage-am-common</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>edu.uci.ics.hyracks</groupId> |
| 98 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>edu.uci.ics.hyracks</groupId> |
| 102 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>edu.uci.ics.hyracks</groupId> |
| 106 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 107 | </dependency> |
ramangrover29 | 18e3138 | 2013-05-08 17:47:33 -0700 | [diff] [blame] | 108 | <dependency> |
| 109 | <groupId>edu.uci.ics.asterix</groupId> |
| 110 | <artifactId>asterix-common</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 111 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 18e3138 | 2013-05-08 17:47:33 -0700 | [diff] [blame] | 112 | <type>jar</type> |
| 113 | <scope>compile</scope> |
| 114 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 115 | </dependencies> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 116 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 117 | </project> |