Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
hussainnm | 5371252 | 2021-02-18 19:46:31 +0530 | [diff] [blame] | 4 | Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 5 | |
| 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 Bot | 0eb5dc0 | 2021-08-26 23:54:16 +0000 | [diff] [blame^] | 25 | <version>6.2.2-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | </parent> |
| 27 | <groupId>org.glassfish.main.tests</groupId> |
| 28 | <artifactId>tests</artifactId> |
| 29 | <packaging>pom</packaging> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 30 | <name>GlassFish devtests ejb</name> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 31 | <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 Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 45 | <dependencies> |
David Matějček | 0b20e98 | 2021-05-06 09:43:16 +0200 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>com.sun</groupId> |
| 48 | <artifactId>tools</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 49 | <version>1.8.0</version> |
David Matějček | 0b20e98 | 2021-05-06 09:43:16 +0200 | [diff] [blame] | 50 | <scope>system</scope> |
| 51 | <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath> |
| 52 | </dependency> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 53 | </dependencies> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <id>id.test</id> |
| 57 | <phase>test</phase> |
| 58 | <configuration> |
| 59 | <target name="antTests"> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 60 | <property name="testMods" value="all"/> |
| 61 | <property name="ant-contrib-path" value="${maven.dependency.ant-contrib.ant-contrib.jar.path}"/> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 62 | <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ček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 74 | <property name="ant-contrib-path" value="${maven.dependency.ant-contrib.ant-contrib.jar.path}"/> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 75 | <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> |