1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!--
3+ ~ Licensed under the Apache License, Version 2.0 (the "License");
4+ ~ you may not use this file except in compliance with the License.
5+ ~ You may obtain a copy of the License at
6+ ~
7+ ~ http://www.apache.org/licenses/LICENSE-2.0
8+ ~
9+ ~ Unless required by applicable law or agreed to in writing, software
10+ ~ distributed under the License is distributed on an "AS IS" BASIS,
11+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ ~ See the License for the specific language governing permissions and
13+ ~ limitations under the License.
14+ -->
15+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
16+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
17+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
18+ <modelVersion >4.0.0</modelVersion >
19+
20+ <parent >
21+ <groupId >com.lancedb</groupId >
22+ <artifactId >lance-namespace-root</artifactId >
23+ <version >0.0.16</version >
24+ <relativePath >../pom.xml</relativePath >
25+ </parent >
26+
27+ <artifactId >lance-namespace-polaris</artifactId >
28+ <packaging >jar</packaging >
29+
30+ <name >Lance Namespace Polaris</name >
31+ <description >Polaris Catalog implementation for Lance namespace management</description >
32+
33+ <dependencies >
34+ <dependency >
35+ <groupId >com.lancedb</groupId >
36+ <artifactId >lance-namespace-core</artifactId >
37+ <version >${lance-namespace.version} </version >
38+ </dependency >
39+ <dependency >
40+ <groupId >com.fasterxml.jackson.core</groupId >
41+ <artifactId >jackson-databind</artifactId >
42+ </dependency >
43+ <dependency >
44+ <groupId >com.fasterxml.jackson.core</groupId >
45+ <artifactId >jackson-annotations</artifactId >
46+ </dependency >
47+ <dependency >
48+ <groupId >com.fasterxml.jackson.datatype</groupId >
49+ <artifactId >jackson-datatype-jsr310</artifactId >
50+ </dependency >
51+ <dependency >
52+ <groupId >org.slf4j</groupId >
53+ <artifactId >slf4j-api</artifactId >
54+ </dependency >
55+
56+ <!-- Test dependencies -->
57+ <dependency >
58+ <groupId >org.junit.jupiter</groupId >
59+ <artifactId >junit-jupiter</artifactId >
60+ <scope >test</scope >
61+ </dependency >
62+ <dependency >
63+ <groupId >org.mockito</groupId >
64+ <artifactId >mockito-core</artifactId >
65+ <scope >test</scope >
66+ </dependency >
67+ <dependency >
68+ <groupId >org.mockito</groupId >
69+ <artifactId >mockito-junit-jupiter</artifactId >
70+ <scope >test</scope >
71+ </dependency >
72+ <dependency >
73+ <groupId >org.assertj</groupId >
74+ <artifactId >assertj-core</artifactId >
75+ <scope >test</scope >
76+ </dependency >
77+ <dependency >
78+ <groupId >ch.qos.logback</groupId >
79+ <artifactId >logback-classic</artifactId >
80+ <scope >test</scope >
81+ </dependency >
82+ </dependencies >
83+ </project >
0 commit comments