Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
| 4 | Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. |
| 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" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.glassfish.tests.embedded</groupId> |
| 26 | <artifactId>maven-plugin</artifactId> |
| 27 | <version>5.0.1-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | <groupId>org.glassfish.tests.embedded.maven-plugin</groupId> |
| 30 | <artifactId>jsptest</artifactId> |
| 31 | <packaging>war</packaging> |
| 32 | <name>Test web app containing JSPs/JSTLs (maven-plugin/jsptest)</name> |
| 33 | |
| 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.glassfish.embedded</groupId> |
| 38 | <artifactId>maven-embedded-glassfish-plugin</artifactId> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <goals> |
| 42 | <goal>start</goal> |
| 43 | <goal>deploy</goal> |
| 44 | <goal>undeploy</goal> |
| 45 | <goal>stop</goal> |
| 46 | </goals> |
| 47 | </execution> |
| 48 | </executions> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | |
| 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.maven</groupId> |
| 56 | <artifactId>maven-plugin-api</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>javax.servlet</groupId> |
| 60 | <artifactId>javax.servlet-api</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>junit</groupId> |
| 64 | <artifactId>junit</artifactId> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | </project> |
| 68 | |