Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [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 | |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [diff] [blame] | 22 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 23 | <parent> |
| 24 | <groupId>org.glassfish.main.distributions</groupId> |
| 25 | <artifactId>distributions</artifactId> |
Eclipse Glassfish Bot | 0eb5dc0 | 2021-08-26 23:54:16 +0000 | [diff] [blame^] | 26 | <version>6.2.2-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 27 | </parent> |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [diff] [blame] | 28 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 29 | <artifactId>web</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 30 | <packaging>glassfish-distribution</packaging> |
| 31 | |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [diff] [blame] | 32 | <name>Glassfish Web Distribution</name> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.glassfish.main.featuresets</groupId> |
| 37 | <artifactId>web</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | <type>pom</type> |
| 40 | <optional>true</optional> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.glassfish.main.extras</groupId> |
| 44 | <artifactId>glassfish-embedded-shell</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | <optional>true</optional> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.glassfish.main.extras</groupId> |
| 50 | <artifactId>glassfish-embedded-static-shell</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | <optional>true</optional> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.glassfish.main.distributions</groupId> |
| 56 | <artifactId>glassfish-common</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <type>zip</type> |
| 59 | <optional>true</optional> |
| 60 | </dependency> |
| 61 | |
| 62 | <!-- following dependencies are needed to run tests... --> |
| 63 | <dependency> |
Stuart Douglas | cb5bc8e | 2018-12-01 12:10:01 +1100 | [diff] [blame] | 64 | <groupId>jakarta.servlet</groupId> |
| 65 | <artifactId>jakarta.servlet-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 66 | <scope>test</scope> |
| 67 | <optional>true</optional> |
| 68 | </dependency> |
| 69 | </dependencies> |
arjantijms | cd117b2 | 2021-01-30 23:43:31 +0100 | [diff] [blame] | 70 | |
| 71 | <build> |
| 72 | <plugins> |
| 73 | <plugin> |
| 74 | <groupId>org.glassfish.build</groupId> |
| 75 | <artifactId>glassfishbuild-maven-plugin</artifactId> |
| 76 | <executions> |
| 77 | <execution> |
| 78 | <id>create-domain</id> |
| 79 | <goals> |
| 80 | <goal>exec</goal> |
| 81 | </goals> |
| 82 | <phase>process-resources</phase> |
| 83 | </execution> |
| 84 | </executions> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 88 | </project> |