blob: 4860cfac43bfce22cfc52283513d415f35377290 [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.main</groupId>
24 <artifactId>glassfish-parent</artifactId>
Eclipse Glassfish Bot0eb5dc02021-08-26 23:54:16 +000025 <version>6.2.2-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053026 </parent>
27 <groupId>org.glassfish.main.tests</groupId>
28 <artifactId>tests</artifactId>
29 <packaging>pom</packaging>
David Matějčekf4dc06a2021-05-17 12:10:57 +020030 <name>GlassFish devtests ejb</name>
Vinay Vishal57171472018-09-18 20:22:00 +053031 <modules>
32 <!-- module>quicklook</module -->
33 </modules>
34 <dependencies>
35 <dependency>
36 <groupId>ant-contrib</groupId>
37 <artifactId>ant-contrib</artifactId>
38 <version>1.0b3</version>
39 </dependency>
40 </dependencies>
41 <build>
42 <plugins>
43 <plugin>
44 <artifactId>maven-antrun-plugin</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053045 <dependencies>
David Matějček0b20e982021-05-06 09:43:16 +020046 <dependency>
47 <groupId>com.sun</groupId>
48 <artifactId>tools</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053049 <version>1.8.0</version>
David Matějček0b20e982021-05-06 09:43:16 +020050 <scope>system</scope>
51 <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
52 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +053053 </dependencies>
54 <executions>
55 <execution>
56 <id>id.test</id>
57 <phase>test</phase>
58 <configuration>
59 <target name="antTests">
David Matějčekf4dc06a2021-05-17 12:10:57 +020060 <property name="testMods" value="all"/>
61 <property name="ant-contrib-path" value="${maven.dependency.ant-contrib.ant-contrib.jar.path}"/>
Vinay Vishal57171472018-09-18 20:22:00 +053062 <ant antfile="build.xml" target="antTests"/>
63 </target>
64 </configuration>
65 <goals>
66 <goal>run</goal>
67 </goals>
68 </execution>
69 <execution>
70 <id>id.clean</id>
71 <phase>clean</phase>
72 <configuration>
73 <target name="clean-result">
David Matějčekf4dc06a2021-05-17 12:10:57 +020074 <property name="ant-contrib-path" value="${maven.dependency.ant-contrib.ant-contrib.jar.path}"/>
Vinay Vishal57171472018-09-18 20:22:00 +053075 <ant antfile="build.xml" target="clean-result"/>
76 </target>
77 </configuration>
78 <goals>
79 <goal>run</goal>
80 </goals>
81 </execution>
82
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87</project>