Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 3 | Copyright (c) 2010, 2020 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 4 | |
| 5 | This program and the accompanying materials are made available under the |
| 6 | terms of the Eclipse Public License v. 2.0, which is available at |
| 7 | http://www.eclipse.org/legal/epl-2.0. |
| 8 | |
| 9 | This Source Code may also be made available under the following Secondary |
| 10 | Licenses when the conditions for such availability set forth in the |
| 11 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 12 | version 2 with the GNU Classpath Exception, which is available at |
| 13 | https://www.gnu.org/software/classpath/license.html. |
| 14 | |
| 15 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 16 | |
| 17 | --> |
| 18 | |
| 19 | <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"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.glassfish.main.grizzly</groupId> |
| 23 | <artifactId>glassfish-grizzly</artifactId> |
Arjan Tijms | 492a711 | 2021-02-10 00:43:04 +0100 | [diff] [blame^] | 24 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>glassfish-grizzly-container</artifactId> |
| 29 | <packaging>glassfish-jar</packaging> |
| 30 | |
| 31 | <name>GlassFish Grizzly adapter container implementation</name> |
| 32 | |
| 33 | <developers> |
| 34 | <developer> |
| 35 | <id>dochez</id> |
| 36 | <name>Jerome Dochez</name> |
| 37 | <url>http://blogs.sun.com/dochez</url> |
| 38 | <organization>Oracle, Inc.</organization> |
| 39 | <roles> |
| 40 | <role>lead</role> |
| 41 | <role>developer</role> |
| 42 | </roles> |
| 43 | </developer> |
| 44 | </developers> |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.glassfish.hk2</groupId> |
| 48 | <artifactId>hk2-core</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.glassfish.main.common</groupId> |
| 52 | <artifactId>glassfish-api</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.glassfish.main.common</groupId> |
| 57 | <artifactId>internal-api</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 60 | </dependencies> |
| 61 | </project> |