Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! 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 Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 19 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | bf0abd4 | 2024-03-05 11:26:12 -0800 | [diff] [blame] | 24 | <version>0.9.8.3-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-transactions</artifactId> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 27 | <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 Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 35 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 36 | <root.dir>${basedir}/..</root.dir> |
Michael Blow | 0020a08 | 2023-08-23 20:56:13 -0400 | [diff] [blame] | 37 | <record-manager-generator-maven-plugin.version>${project.version}</record-manager-generator-maven-plugin.version> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 38 | </properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.asterix</groupId> |
| 43 | <artifactId>record-manager-generator-maven-plugin</artifactId> |
Michael Blow | 0020a08 | 2023-08-23 20:56:13 -0400 | [diff] [blame] | 44 | <version>${record-manager-generator-maven-plugin.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 45 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 67 | <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 Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 82 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 94 | </plugins> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 95 | </build> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 96 | <dependencies> |
| 97 | <dependency> |
| 98 | <groupId>org.apache.hyracks</groupId> |
| 99 | <artifactId>hyracks-storage-am-common</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 102 | <groupId>org.apache.asterix</groupId> |
| 103 | <artifactId>asterix-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 104 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 105 | <type>jar</type> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>com.google.guava</groupId> |
| 110 | <artifactId>guava</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.mockito</groupId> |
Ian Maxon | 4889f6b | 2021-05-05 02:08:27 -0700 | [diff] [blame] | 114 | <artifactId>mockito-core</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 115 | <scope>test</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>junit</groupId> |
| 119 | <artifactId>junit</artifactId> |
| 120 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 121 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 122 | <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 Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 132 | <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 Alamoudi | 910303b | 2017-02-03 23:02:25 -0800 | [diff] [blame] | 142 | <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 Westmann | 23761dd | 2017-11-08 14:26:33 -0800 | [diff] [blame] | 148 | <artifactId>algebricks-common</artifactId> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.apache.hyracks</groupId> |
Abdullah Alamoudi | 910303b | 2017-02-03 23:02:25 -0800 | [diff] [blame] | 152 | <artifactId>algebricks-runtime</artifactId> |
| 153 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 154 | <dependency> |
| 155 | <groupId>org.apache.logging.log4j</groupId> |
| 156 | <artifactId>log4j-api</artifactId> |
| 157 | </dependency> |
Michael Blow | 2e4f34e | 2018-03-08 22:18:10 -0800 | [diff] [blame] | 158 | <dependency> |
| 159 | <groupId>org.apache.hyracks</groupId> |
| 160 | <artifactId>hyracks-util</artifactId> |
| 161 | </dependency> |
Murtadha Hubail | 1b412c5 | 2018-03-19 22:52:31 +0300 | [diff] [blame] | 162 | <dependency> |
| 163 | <groupId>commons-codec</groupId> |
| 164 | <artifactId>commons-codec</artifactId> |
| 165 | </dependency> |
Michael Blow | aac1e93 | 2018-04-13 11:12:35 -0400 | [diff] [blame] | 166 | <dependency> |
| 167 | <groupId>it.unimi.dsi</groupId> |
| 168 | <artifactId>fastutil</artifactId> |
| 169 | </dependency> |
Murtadha Hubail | 11f7c34 | 2018-07-15 10:55:47 +0300 | [diff] [blame] | 170 | <dependency> |
| 171 | <groupId>com.fasterxml.jackson.core</groupId> |
| 172 | <artifactId>jackson-databind</artifactId> |
| 173 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 174 | </dependencies> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 175 | </project> |