blob: 525fb1ff0fdf433996a6f312ad0248daaeec225c [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
hussainnm53712522021-02-18 19:46:31 +05304 Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05305
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v. 2.0, which is available at
8 http://www.eclipse.org/legal/epl-2.0.
9
10 This Source Code may also be made available under the following Secondary
11 Licenses when the conditions for such availability set forth in the
12 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13 version 2 with the GNU Classpath Exception, which is available at
14 https://www.gnu.org/software/classpath/license.html.
15
16 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17
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 <parent>
23 <groupId>org.glassfish</groupId>
24 <artifactId>pom</artifactId>
25 <version>2</version>
26 </parent>
27 <groupId>org.glassfish.quicklook.ejb</groupId>
28 <artifactId>ejb_quicklook</artifactId>
29 <name>Glassfish JRuby Quicklook</name>
30 <packaging>jar</packaging>
David Matějček56030c92021-06-03 12:55:40 +020031 <version>6.2.0-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053032 <description>This pom describes how to run QuickLook tests on the Glassfish Bundle</description>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
38 <artifactId>maven-antrun-extended-plugin</artifactId>
39 <executions>
40 <execution>
41 <phase>test</phase>
42 <configuration>
43 <tasks>
44 <property name="compile_classpath" refid="maven.compile.classpath"/>
45 <property name="plugin_classpath" refid="maven.plugin.classpath"/>
46
47 <echo message="compile classpath: ${compile_classpath}"/>
48 <echo message="plugin classpath: ${plugin_classpath}"/>
49 <ant dir="." antfile="build.xml" target="all">
50 <property name="glassfish.home" value="${glassfish.home}"/>
51 </ant>
52 </tasks>
53 </configuration>
54 <goals>
55 <goal>run</goal>
56 </goals>
57 </execution>
58 </executions>
59 <dependencies>
60 <dependency>
61 <groupId>org.testng</groupId>
62 <artifactId>testng</artifactId>
63 <version>6.11</version>
64 </dependency>
65 </dependencies>
66 </plugin>
67 </plugins>
68 </build>
69</project>
70