blob: fbec3b85f6357011d3265cbf872a455d30999320 [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
Ian4a816dc2014-11-26 15:46:32 -080024 <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
vinayakb38b7ca42012-03-05 05:44:15 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000039 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000040 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000043 </configuration>
44 </plugin>
Till Westmann0d31d5c2013-09-28 21:59:14 -070045 <plugin>
46 <groupId>edu.uci.ics.asterix</groupId>
47 <artifactId>record-manager-generator-maven-plugin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070048 <version>0.8.7-SNAPSHOT</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070049 <configuration>
Till Westmann655aa722013-10-16 11:20:38 -070050 <debug>false</debug>
Till Westmann7b1b22a2013-11-04 11:21:30 -080051 <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 Westmann28fbd9a2013-11-04 12:38:49 -080056 <packageName>edu.uci.ics.asterix.transaction.management.service.locking</packageName>
Till Westmann0d31d5c2013-09-28 21:59:14 -070057 </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 Westmann6212c902014-07-30 15:44:59 -070071 <version>1.9</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070072 <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>
vinayakb38b7ca42012-03-05 05:44:15 +000087 </plugins>
88
89 </build>
90
91 <dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +000092 <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>
ramangrover2918e31382013-05-08 17:47:33 -0700108 <dependency>
109 <groupId>edu.uci.ics.asterix</groupId>
110 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700111 <version>0.8.7-SNAPSHOT</version>
ramangrover2918e31382013-05-08 17:47:33 -0700112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 </dependencies>
vinayakb5ee049d2013-04-06 21:21:29 +0000116
vinayakb38b7ca42012-03-05 05:44:15 +0000117</project>