blob: ad044cbadbd6594313198f2834ef711adc0f11f4 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmannea8ab392013-06-05 15:17:08 -070018 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000019<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080024 <version>0.9.4-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
26 <artifactId>asterix-transactions</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080027 <licenses>
28 <license>
29 <name>Apache License, Version 2.0</name>
30 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31 <distribution>repo</distribution>
32 <comments>A business-friendly OSS license</comments>
33 </license>
34 </licenses>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080035 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050036 <root.dir>${basedir}/..</root.dir>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080037 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.asterix</groupId>
42 <artifactId>record-manager-generator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040043 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <configuration>
45 <debug>false</debug>
46 <inputFiles>
47 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Job.json</param>
48 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Resource.json</param>
49 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Request.json</param>
50 </inputFiles>
51 <packageName>org.apache.asterix.transaction.management.service.locking</packageName>
52 </configuration>
53 <executions>
54 <execution>
55 <id>generate-record-manager</id>
56 <phase>generate-sources</phase>
57 <goals>
58 <goal>generate-record-manager</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>build-helper-maven-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <executions>
67 <execution>
68 <id>add-source</id>
69 <phase>generate-sources</phase>
70 <goals>
71 <goal>add-source</goal>
72 </goals>
73 <configuration>
74 <sources>
75 <source>${project.build.directory}/generated-sources/java/</source>
76 </sources>
77 </configuration>
78 </execution>
79 </executions>
80 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -040081 <plugin>
82 <groupId>org.apache.rat</groupId>
83 <artifactId>apache-rat-plugin</artifactId>
84 <configuration>
85 <excludes combine.children="append">
86 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Job.json</exclude>
87 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Resource.json</exclude>
88 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Request.json</exclude>
89 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/LockRequestFile</exclude>
90 </excludes>
91 </configuration>
92 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070093 </plugins>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </build>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 <dependencies>
96 <dependency>
97 <groupId>org.apache.hyracks</groupId>
98 <artifactId>hyracks-storage-am-common</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070099 </dependency>
100 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700101 <groupId>org.apache.asterix</groupId>
102 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400103 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>com.google.guava</groupId>
109 <artifactId>guava</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700110 </dependency>
111 <dependency>
112 <groupId>org.mockito</groupId>
113 <artifactId>mockito-all</artifactId>
114 <version>1.10.19</version>
Michael Blow2da62dc2016-06-30 21:18:37 -0400115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>junit</groupId>
119 <artifactId>junit</artifactId>
120 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500122 <dependency>
123 <groupId>commons-io</groupId>
124 <artifactId>commons-io</artifactId>
125 </dependency>
126 <dependency>
127 <groupId>org.apache.hyracks</groupId>
128 <artifactId>hyracks-dataflow-common</artifactId>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500132 <artifactId>hyracks-storage-am-lsm-common</artifactId>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.hyracks</groupId>
136 <artifactId>hyracks-api</artifactId>
137 </dependency>
138 <dependency>
139 <groupId>org.apache.hyracks</groupId>
140 <artifactId>hyracks-storage-common</artifactId>
141 </dependency>
Abdullah Alamoudi910303b2017-02-03 23:02:25 -0800142 <dependency>
143 <groupId>org.apache.hyracks</groupId>
144 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.hyracks</groupId>
Till Westmann23761dd2017-11-08 14:26:33 -0800148 <artifactId>algebricks-common</artifactId>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hyracks</groupId>
Abdullah Alamoudi910303b2017-02-03 23:02:25 -0800152 <artifactId>algebricks-runtime</artifactId>
153 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300154 <dependency>
155 <groupId>org.apache.logging.log4j</groupId>
156 <artifactId>log4j-api</artifactId>
157 </dependency>
Michael Blow2e4f34e2018-03-08 22:18:10 -0800158 <dependency>
159 <groupId>org.apache.hyracks</groupId>
160 <artifactId>hyracks-util</artifactId>
161 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700162 </dependencies>
Michael Blow4cd925c2018-01-20 17:15:38 -0500163</project>