Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 4 | Copyright (c) 2010, 2020 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 | |
| 22 | <parent> |
| 23 | <groupId>org.glassfish.main.transaction</groupId> |
| 24 | <artifactId>transaction</artifactId> |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 25 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <artifactId>transaction-internal-api</artifactId> |
| 30 | <packaging>glassfish-jar</packaging> |
| 31 | |
| 32 | <name>Transaction Service Internal API</name> |
| 33 | |
| 34 | <developers> |
| 35 | <developer> |
| 36 | <id>mvatkina</id> |
| 37 | <name>Marina Vatkina</name> |
| 38 | <organization>Oracle, Inc.</organization> |
| 39 | <roles> |
| 40 | <role>developer</role> |
| 41 | </roles> |
| 42 | </developer> |
| 43 | </developers> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.glassfish.hk2</groupId> |
| 48 | <artifactId>hk2-core</artifactId> |
| 49 | </dependency> |
| 50 | <dependency> |
Tom Jenkinson | 4487544 | 2018-11-09 09:28:10 +0000 | [diff] [blame] | 51 | <groupId>jakarta.transaction</groupId> |
| 52 | <artifactId>jakarta.transaction-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
Steve Millidge | 15e8749 | 2018-11-13 08:20:41 +0000 | [diff] [blame] | 55 | <groupId>jakarta.resource</groupId> |
| 56 | <artifactId>jakarta.resource-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
smillidge | 17bc69e | 2020-04-26 18:29:32 +0100 | [diff] [blame] | 59 | <groupId>jakarta.persistence</groupId> |
| 60 | <artifactId>jakarta.persistence-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.glassfish.main.common</groupId> |
| 64 | <artifactId>glassfish-api</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | |
| 68 | <!-- Dependency on StringManager --> |
| 69 | <dependency> |
| 70 | <groupId>org.glassfish.main.common</groupId> |
| 71 | <artifactId>common-util</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.glassfish.main.admin</groupId> |
| 76 | <artifactId>config-api</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
| 79 | </dependencies> |
| 80 | </project> |