Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
arjantijms | dd59104 | 2021-11-22 12:27:53 +0100 | [diff] [blame] | 4 | Copyright (c) 2021 Contributors to the Eclipse Foundation |
hussainnm | 5371252 | 2021-02-18 19:46:31 +0530 | [diff] [blame] | 5 | Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 6 | |
| 7 | This program and the accompanying materials are made available under the |
| 8 | terms of the Eclipse Public License v. 2.0, which is available at |
| 9 | http://www.eclipse.org/legal/epl-2.0. |
| 10 | |
| 11 | This Source Code may also be made available under the following Secondary |
| 12 | Licenses when the conditions for such availability set forth in the |
| 13 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 14 | version 2 with the GNU Classpath Exception, which is available at |
| 15 | https://www.gnu.org/software/classpath/license.html. |
| 16 | |
| 17 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 18 | |
| 19 | --> |
| 20 | |
arjantijms | efe3cd1 | 2021-08-22 00:40:59 +0200 | [diff] [blame] | 21 | <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"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 23 | |
| 24 | <parent> |
| 25 | <groupId>org.glassfish.main.transaction</groupId> |
| 26 | <artifactId>transaction</artifactId> |
David Matějček | 0ed4fff | 2021-11-28 18:55:50 +0100 | [diff] [blame] | 27 | <version>7.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 28 | </parent> |
arjantijms | efe3cd1 | 2021-08-22 00:40:59 +0200 | [diff] [blame] | 29 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 30 | <artifactId>jts</artifactId> |
| 31 | <packaging>glassfish-jar</packaging> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 32 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 33 | <name>JTS Implementation for Glassfish</name> |
David Matějček | f4dc06a | 2021-05-17 12:10:57 +0200 | [diff] [blame] | 34 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 35 | <developers> |
| 36 | <developer> |
| 37 | <id>mvatkina</id> |
| 38 | <name>Marina Vatkina</name> |
| 39 | <organization>Oracle, Inc.</organization> |
| 40 | <roles> |
| 41 | <role>developer</role> |
| 42 | </roles> |
| 43 | </developer> |
| 44 | </developers> |
| 45 | |
| 46 | <properties> |
| 47 | <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude> |
| 48 | </properties> |
| 49 | |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 50 | <dependencies> |
| 51 | <dependency> |
| 52 | <groupId>org.glassfish.hk2</groupId> |
| 53 | <artifactId>hk2-core</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
Tom Jenkinson | 4487544 | 2018-11-09 09:28:10 +0000 | [diff] [blame] | 56 | <groupId>jakarta.transaction</groupId> |
| 57 | <artifactId>jakarta.transaction-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
Steve Millidge | 15e8749 | 2018-11-13 08:20:41 +0000 | [diff] [blame] | 60 | <groupId>jakarta.resource</groupId> |
| 61 | <artifactId>jakarta.resource-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.glassfish.main.transaction</groupId> |
| 65 | <artifactId>transaction-internal-api</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.glassfish.main.transaction</groupId> |
| 70 | <artifactId>jta</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.glassfish.main.common</groupId> |
| 75 | <artifactId>glassfish-api</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.glassfish.main.common</groupId> |
| 80 | <artifactId>common-util</artifactId> |
| 81 | <version>${project.parent.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.glassfish.main.admin</groupId> |
| 85 | <artifactId>config-api</artifactId> |
| 86 | <version>${project.parent.version}</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.glassfish.pfl</groupId> |
| 90 | <artifactId>pfl-basic</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.glassfish.corba</groupId> |
| 94 | <artifactId>glassfish-corba-omgapi</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.glassfish.corba</groupId> |
| 98 | <artifactId>glassfish-corba-internal-api</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.glassfish.corba</groupId> |
| 102 | <artifactId>glassfish-corba-orb</artifactId> |
| 103 | <optional>true</optional> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.glassfish.main.orb</groupId> |
| 107 | <artifactId>orb-connector</artifactId> |
| 108 | <version>${project.parent.version}</version> |
| 109 | <optional>true</optional> |
| 110 | </dependency> |
| 111 | <dependency> |
David Matějček | 039e0f9 | 2021-09-06 11:41:34 +0200 | [diff] [blame] | 112 | <groupId>org.glassfish.main.cluster</groupId> |
| 113 | <artifactId>gms-bootstrap</artifactId> |
| 114 | <version>${project.version}</version> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.junit.jupiter</groupId> |
| 119 | <artifactId>junit-jupiter-engine</artifactId> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.hamcrest</groupId> |
| 123 | <artifactId>hamcrest</artifactId> |
| 124 | </dependency> |
| 125 | <dependency> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 126 | <groupId>org.glassfish.main.connectors</groupId> |
| 127 | <artifactId>connectors-runtime</artifactId> |
| 128 | <version>${project.version}</version> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 131 | </dependencies> |
arjantijms | efe3cd1 | 2021-08-22 00:40:59 +0200 | [diff] [blame] | 132 | |
| 133 | <build> |
| 134 | <resources> |
| 135 | <resource> |
| 136 | <directory>src/main/java</directory> |
| 137 | <includes> |
| 138 | <include>**/*.properties</include> |
| 139 | </includes> |
| 140 | </resource> |
| 141 | <resource> |
| 142 | <directory>src/main/resources</directory> |
| 143 | </resource> |
| 144 | </resources> |
| 145 | </build> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 146 | </project> |