blob: dbe4bc2c6566572667a0cf282966aefa295a36f8 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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">
vinayakb38b7ca42012-03-05 05:44:15 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-transactions</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070029 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000030 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000031 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </configuration>
35 </plugin>
Till Westmann0d31d5c2013-09-28 21:59:14 -070036 <plugin>
37 <groupId>edu.uci.ics.asterix</groupId>
38 <artifactId>record-manager-generator-maven-plugin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070039 <version>0.8.7-SNAPSHOT</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070040 <configuration>
Till Westmann655aa722013-10-16 11:20:38 -070041 <debug>false</debug>
Till Westmann7b1b22a2013-11-04 11:21:30 -080042 <inputFiles>
43 <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Job.json</param>
44 <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Resource.json</param>
45 <param>src/main/java/edu/uci/ics/asterix/transaction/management/service/locking/Request.json</param>
46 </inputFiles>
Till Westmann28fbd9a2013-11-04 12:38:49 -080047 <packageName>edu.uci.ics.asterix.transaction.management.service.locking</packageName>
Till Westmann0d31d5c2013-09-28 21:59:14 -070048 </configuration>
49 <executions>
50 <execution>
51 <id>generate-record-manager</id>
52 <phase>generate-sources</phase>
53 <goals>
54 <goal>generate-record-manager</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>build-helper-maven-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070062 <version>1.9</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070063 <executions>
64 <execution>
65 <id>add-source</id>
66 <phase>generate-sources</phase>
67 <goals>
68 <goal>add-source</goal>
69 </goals>
70 <configuration>
71 <sources>
72 <source>${project.build.directory}/generated-sources/java/</source>
73 </sources>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000078 </plugins>
79
80 </build>
81
82 <dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +000083 <dependency>
84 <groupId>edu.uci.ics.hyracks</groupId>
85 <artifactId>hyracks-storage-am-common</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>edu.uci.ics.hyracks</groupId>
89 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>edu.uci.ics.hyracks</groupId>
93 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
98 </dependency>
ramangrover2918e31382013-05-08 17:47:33 -070099 <dependency>
100 <groupId>edu.uci.ics.asterix</groupId>
101 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700102 <version>0.8.7-SNAPSHOT</version>
ramangrover2918e31382013-05-08 17:47:33 -0700103 <type>jar</type>
104 <scope>compile</scope>
105 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000106 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000107
vinayakb38b7ca42012-03-05 05:44:15 +0000108</project>