1 <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 3     <!--Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
 4   DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 5 
 6   This code is free software; you can redistribute it and/or modify it
 7   under the terms of the GNU General Public License version 2 only, as
 8   published by the Free Software Foundation.  Oracle designates this
 9   particular file as subject to the "Classpath" exception as provided
10   by Oracle in the LICENSE file that accompanied this code.
11 
12   This code is distributed in the hope that it will be useful, but WITHOUT
13   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15   version 2 for more details (a copy is included in the LICENSE file that
16   accompanied this code).
17 
18   You should have received a copy of the GNU General Public License version
19   2 along with this work; if not, write to the Free Software Foundation,
20   Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21 
22   Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23   or visit www.oracle.com if you need additional information or have any
24   questions.
25   -->
26 
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>oracle.code</groupId>
29     <artifactId>hat-tests</artifactId>
30     <version>1.0</version>
31     <name>hat-tests</name>
32     <url>https://github.com/openjdk/babylon</url>
33     <parent>
34         <artifactId>hat-root</artifactId>
35         <groupId>oracle.code</groupId>
36         <version>1.0</version>
37     </parent>
38     <dependencies>
39         <dependency>
40             <groupId>oracle.code</groupId>
41             <artifactId>hat-core</artifactId>
42             <version>1.0</version>
43         </dependency>
44     </dependencies>
45 
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-antrun-plugin</artifactId>
51                 <version>1.8</version>
52                 <executions>
53                     <execution>
54                         <id>1</id>
55                         <phase>install</phase>
56                         <goals>
57                             <goal>run</goal>
58                         </goals>
59                         <configuration>
60                             <target>
61                                 <copy file="target/${project.artifactId}-${project.version}.jar" toDir="${hat.build}"/>
62                             </target>
63                         </configuration>
64                     </execution>
65                 </executions>
66             </plugin>
67         </plugins>
68     </build>
69 
70 </project>