blob: 1d7293c6501a255b1a5ec4956da6f3b7b504db37 [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>
Ian Maxonc95de7a2020-08-07 11:58:39 -070024 <version>0.9.6-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>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700113 <artifactId>mockito-core</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400114 <scope>test</scope>
115 </dependency>
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
119 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700120 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500121 <dependency>
122 <groupId>commons-io</groupId>
123 <artifactId>commons-io</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.hyracks</groupId>
127 <artifactId>hyracks-dataflow-common</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500131 <artifactId>hyracks-storage-am-lsm-common</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.apache.hyracks</groupId>
135 <artifactId>hyracks-api</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>org.apache.hyracks</groupId>
139 <artifactId>hyracks-storage-common</artifactId>
140 </dependency>
Abdullah Alamoudi910303b2017-02-03 23:02:25 -0800141 <dependency>
142 <groupId>org.apache.hyracks</groupId>
143 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hyracks</groupId>
Till Westmann23761dd2017-11-08 14:26:33 -0800147 <artifactId>algebricks-common</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>org.apache.hyracks</groupId>
Abdullah Alamoudi910303b2017-02-03 23:02:25 -0800151 <artifactId>algebricks-runtime</artifactId>
152 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300153 <dependency>
154 <groupId>org.apache.logging.log4j</groupId>
155 <artifactId>log4j-api</artifactId>
156 </dependency>
Michael Blow2e4f34e2018-03-08 22:18:10 -0800157 <dependency>
158 <groupId>org.apache.hyracks</groupId>
159 <artifactId>hyracks-util</artifactId>
160 </dependency>
Murtadha Hubail1b412c52018-03-19 22:52:31 +0300161 <dependency>
162 <groupId>commons-codec</groupId>
163 <artifactId>commons-codec</artifactId>
164 </dependency>
Michael Blowaac1e932018-04-13 11:12:35 -0400165 <dependency>
166 <groupId>it.unimi.dsi</groupId>
167 <artifactId>fastutil</artifactId>
168 </dependency>
Murtadha Hubail11f7c342018-07-15 10:55:47 +0300169 <dependency>
170 <groupId>com.fasterxml.jackson.core</groupId>
171 <artifactId>jackson-databind</artifactId>
172 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700173 </dependencies>
Michael Blow4cd925c2018-01-20 17:15:38 -0500174</project>