blob: 38165f854c012d5bab27b44763791415cee271f8 [file] [log] [blame]
Dmitry Lychagin8fbe31c2022-04-18 11:56:11 -07001<!--
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.
18 !-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <artifactId>asterix-jdbc-test</artifactId>
Dmitry Lychagin8ae08182022-06-07 18:11:10 -070023 <version>0.9.9-SNAPSHOT</version>
Dmitry Lychagin8fbe31c2022-04-18 11:56:11 -070024 <packaging>jar</packaging>
25 <parent>
26 <groupId>org.apache.asterix</groupId>
27 <artifactId>apache-asterixdb</artifactId>
28 <version>0.9.8-SNAPSHOT</version>
29 <relativePath>../../../../asterixdb/pom.xml</relativePath> <!-- asterixdb/pom.xml -->
30 </parent>
31
32 <properties>
33 <root.dir>${basedir}/..</root.dir>
34 <asterix-app.dir>${root.dir}/../../asterix-app</asterix-app.dir>
35 <testLog4jConfigFile>${asterix-app.dir}/src/test/resources/log4j2-asterixdb-test.xml</testLog4jConfigFile>
36 </properties>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-surefire-plugin</artifactId>
43 <configuration>
44 <systemPropertyVariables combine.children="append">
45 <asterix-app.dir>${asterix-app.dir}</asterix-app.dir>
46 </systemPropertyVariables>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-failsafe-plugin</artifactId>
52 <configuration>
53 <systemPropertyVariables combine.children="append">
54 <asterix-app.dir>${asterix-app.dir}</asterix-app.dir>
55 </systemPropertyVariables>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60
61 <dependencies>
62 <dependency>
63 <groupId>org.apache.asterix</groupId>
64 <artifactId>asterix-jdbc-driver</artifactId>
65 <version>${project.version}</version>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hyracks</groupId>
70 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
71 <type>test-jar</type>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.asterix</groupId>
76 <artifactId>asterix-test-framework</artifactId>
77 <version>${project.version}</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.asterix</groupId>
82 <artifactId>asterix-app</artifactId>
83 <version>${project.version}</version>
84 <type>jar</type>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.asterix</groupId>
89 <artifactId>asterix-app</artifactId>
90 <version>${project.version}</version>
91 <type>test-jar</type>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>commons-io</groupId>
96 <artifactId>commons-io</artifactId>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100</project>
101