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 | <groupId>org.glassfish.quicklook</groupId> |
| 23 | <artifactId>adminconsole</artifactId> |
David Matějček | 56030c9 | 2021-06-03 12:55:40 +0200 | [diff] [blame^] | 24 | <version>6.2.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 25 | <name>Admin Console Quicklook Tests</name> |
| 26 | <packaging>jar</packaging> |
| 27 | <parent> |
| 28 | <groupId>org.glassfish</groupId> |
| 29 | <artifactId>pom</artifactId> |
| 30 | <version>2</version> |
| 31 | </parent> |
| 32 | |
| 33 | <description>Runs the tests on admin console code</description> |
| 34 | <build> |
| 35 | <testSourceDirectory>src</testSourceDirectory> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <artifactId>maven-compiler-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <encoding>iso-8859-1</encoding> |
| 41 | <source>1.5</source> |
| 42 | <target>1.5</target> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | <plugin> |
| 46 | <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> |
| 47 | <artifactId>maven-antrun-extended-plugin</artifactId> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <phase>test</phase> |
| 51 | <configuration> |
| 52 | <tasks> |
| 53 | <property name="compile_classpath" refid="maven.compile.classpath" /> |
| 54 | <property name="plugin_classpath" refid="maven.plugin.classpath" /> |
| 55 | |
| 56 | <echo message="compile classpath: ${compile_classpath}" /> |
| 57 | <echo message="plugin classpath: ${plugin_classpath}" /> |
| 58 | <ant dir="." antfile="build.xml" target="all"> |
| 59 | <property name="glassfish.home" value="${glassfish.home}" /> |
| 60 | </ant> |
| 61 | </tasks> |
| 62 | </configuration> |
| 63 | <goals> |
| 64 | <goal>run</goal> |
| 65 | </goals> |
| 66 | </execution> |
| 67 | </executions> |
| 68 | <dependencies> |
| 69 | <dependency> |
| 70 | <groupId>commons-codec</groupId> |
| 71 | <artifactId>commons-codec</artifactId> |
| 72 | <version>1.3</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>commons-httpclient</groupId> |
| 76 | <artifactId>commons-httpclient</artifactId> |
| 77 | <version>3.1</version> |
| 78 | <scope>compile</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>com.sun.jsftemplating</groupId> |
| 82 | <artifactId>jsftemplating-dynafaces</artifactId> |
| 83 | <version>0.1</version> |
| 84 | </dependency> |
| 85 | </dependencies> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | <dependencies> |
| 90 | <dependency> |
| 91 | <groupId>org.testng</groupId> |
| 92 | <artifactId>testng</artifactId> |
| 93 | <version>6.11</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>commons-httpclient</groupId> |
| 97 | <artifactId>commons-httpclient</artifactId> |
| 98 | <version>3.1</version> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.glassfish.common</groupId> |
| 103 | <artifactId>amx-core</artifactId> |
David Matějček | 56030c9 | 2021-06-03 12:55:40 +0200 | [diff] [blame^] | 104 | <version>6.2.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 105 | </dependency> |
| 106 | </dependencies> |
| 107 | </project> |