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" 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.webservices</groupId> |
| 24 | <artifactId>webservices</artifactId> |
| 25 | <version>5.0.1-SNAPSHOT</version> |
| 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | <artifactId>metro-glue</artifactId> |
| 29 | <packaging>glassfish-jar</packaging> |
| 30 | |
| 31 | <name>GlassFish Metro Glue Code</name> |
| 32 | |
| 33 | <developers> |
| 34 | <developer> |
| 35 | <id>m_potociar</id> |
| 36 | <name>Marek Potociar</name> |
| 37 | <organization>Oracle, Inc.</organization> |
| 38 | <roles> |
| 39 | <role>lead</role> |
| 40 | <role>developer</role> |
| 41 | </roles> |
| 42 | </developer> |
| 43 | </developers> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.glassfish.main.common</groupId> |
| 48 | <artifactId>common-util</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.glassfish.main.common</groupId> |
| 53 | <artifactId>glassfish-api</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.glassfish.main.common</groupId> |
| 58 | <artifactId>internal-api</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.glassfish.main.deployment</groupId> |
| 63 | <artifactId>deployment-common</artifactId> |
| 64 | <version>${project.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.glassfish.main.webservices</groupId> |
| 68 | <artifactId>jsr109-impl</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.glassfish.metro</groupId> |
| 73 | <artifactId>webservices-osgi</artifactId> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.glassfish.main.admin</groupId> |
| 77 | <artifactId>config-api</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.glassfish.annotations</groupId> |
| 82 | <artifactId>logging-annotation-processor</artifactId> |
| 83 | <optional>true</optional> |
| 84 | </dependency> |
| 85 | </dependencies> |
| 86 | </project> |