blob: 45c0572ac0051d0928e4243f02cdfeeaf497b149 [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 Maxonbf0abd42024-03-05 11:26:12 -080024 <version>0.9.8.3-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>
Michael Blow0020a082023-08-23 20:56:13 -040037 <record-manager-generator-maven-plugin.version>${project.version}</record-manager-generator-maven-plugin.version>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080038 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.asterix</groupId>
43 <artifactId>record-manager-generator-maven-plugin</artifactId>
Michael Blow0020a082023-08-23 20:56:13 -040044 <version>${record-manager-generator-maven-plugin.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 <configuration>
46 <debug>false</debug>
47 <inputFiles>
48 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Job.json</param>
49 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Resource.json</param>
50 <param>src/main/java/org/apache/asterix/transaction/management/service/locking/Request.json</param>
51 </inputFiles>
52 <packageName>org.apache.asterix.transaction.management.service.locking</packageName>
53 </configuration>
54 <executions>
55 <execution>
56 <id>generate-record-manager</id>
57 <phase>generate-sources</phase>
58 <goals>
59 <goal>generate-record-manager</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>build-helper-maven-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070067 <executions>
68 <execution>
69 <id>add-source</id>
70 <phase>generate-sources</phase>
71 <goals>
72 <goal>add-source</goal>
73 </goals>
74 <configuration>
75 <sources>
76 <source>${project.build.directory}/generated-sources/java/</source>
77 </sources>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -040082 <plugin>
83 <groupId>org.apache.rat</groupId>
84 <artifactId>apache-rat-plugin</artifactId>
85 <configuration>
86 <excludes combine.children="append">
87 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Job.json</exclude>
88 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Resource.json</exclude>
89 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/Request.json</exclude>
90 <exclude>src/main/java/org/apache/asterix/transaction/management/service/locking/LockRequestFile</exclude>
91 </excludes>
92 </configuration>
93 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </plugins>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 </build>
Michael Blowb4c1fb02016-05-09 15:41:00 -070096 <dependencies>
97 <dependency>
98 <groupId>org.apache.hyracks</groupId>
99 <artifactId>hyracks-storage-am-common</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700100 </dependency>
101 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700102 <groupId>org.apache.asterix</groupId>
103 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400104 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700105 <type>jar</type>
106 <scope>compile</scope>
107 </dependency>
108 <dependency>
109 <groupId>com.google.guava</groupId>
110 <artifactId>guava</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700111 </dependency>
112 <dependency>
113 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700114 <artifactId>mockito-core</artifactId>
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>
Murtadha Hubail1b412c52018-03-19 22:52:31 +0300162 <dependency>
163 <groupId>commons-codec</groupId>
164 <artifactId>commons-codec</artifactId>
165 </dependency>
Michael Blowaac1e932018-04-13 11:12:35 -0400166 <dependency>
167 <groupId>it.unimi.dsi</groupId>
168 <artifactId>fastutil</artifactId>
169 </dependency>
Murtadha Hubail11f7c342018-07-15 10:55:47 +0300170 <dependency>
171 <groupId>com.fasterxml.jackson.core</groupId>
172 <artifactId>jackson-databind</artifactId>
173 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700174 </dependencies>
Michael Blow4cd925c2018-01-20 17:15:38 -0500175</project>