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