blob: f907994425f07773289e958669cbf9424e0fce29 [file] [log] [blame]
Michael Blow84edbf62023-10-23 18:16:53 -04001<!--
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
20<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/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-server-test</artifactId>
23 <name>hyracks-server-test</name>
24 <parent>
25 <groupId>org.apache.hyracks</groupId>
26 <artifactId>hyracks-tests</artifactId>
Ian Maxonbf0abd42024-03-05 11:26:12 -080027 <version>0.3.8.3-SNAPSHOT</version>
Michael Blow84edbf62023-10-23 18:16:53 -040028 </parent>
29
30 <licenses>
31 <license>
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 <distribution>repo</distribution>
35 <comments>A business-friendly OSS license</comments>
36 </license>
37 </licenses>
38
39 <properties>
40 <root.dir>${basedir}/../../..</root.dir>
41 </properties>
42
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <executions>
49 <execution>
50 <goals>
51 <goal>test-jar</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-dependency-plugin</artifactId>
59 <configuration>
60 <usedDependencies combine.children="append">
61 <usedDependency>org.apache.hyracks:hyracks-server</usedDependency>
62 </usedDependencies>
63 </configuration>
64 <executions>
65 <execution>
66 <phase>process-test-classes</phase>
67 <goals>
68 <goal>analyze-only</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-failsafe-plugin</artifactId>
76 <configuration>
77 <runOrder>alphabetical</runOrder>
78 <forkMode>pertest</forkMode>
79 </configuration>
80 <executions>
81 <execution>
82 <goals>
83 <goal>integration-test</goal>
84 <goal>verify</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </build>
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-control-cc</artifactId>
95 <version>${project.version}</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hyracks</groupId>
100 <artifactId>hyracks-nc-service</artifactId>
101 <version>${project.version}</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.hyracks</groupId>
106 <artifactId>hyracks-server</artifactId>
107 <version>${project.version}</version>
108 <scope>test</scope>
109 </dependency>
110<!--
111 <dependency>
112 <groupId>org.apache.hyracks</groupId>
113 <artifactId>hyracks-control-nc</artifactId>
114 <version>${project.version}</version>
115 <scope>test</scope>
116 </dependency>
117-->
118 <dependency>
119 <groupId>junit</groupId>
120 <artifactId>junit</artifactId>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.httpcomponents</groupId>
125 <artifactId>httpcore</artifactId>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.hyracks</groupId>
130 <artifactId>hyracks-util</artifactId>
131 <version>${project.version}</version>
132 <scope>test</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.logging.log4j</groupId>
136 <artifactId>log4j-api</artifactId>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>org.apache.httpcomponents</groupId>
141 <artifactId>httpclient</artifactId>
142 <scope>test</scope>
143 </dependency>
144 <dependency>
145 <groupId>com.fasterxml.jackson.core</groupId>
146 <artifactId>jackson-databind</artifactId>
147 <scope>test</scope>
148 </dependency>
149 </dependencies>
150</project>