blob: 696645e3e9fd26073f0336ec5ff48bbe9ecb22fb [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
arjantijmsdd591042021-11-22 12:27:53 +01004 Copyright (c) 2021 Contributors to the Eclipse Foundation
hussainnm53712522021-02-18 19:46:31 +05305 Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05306
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
arjantijmsefe3cd12021-08-22 00:40:59 +020021<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 Vishal57171472018-09-18 20:22:00 +053023
24 <parent>
25 <groupId>org.glassfish.main.transaction</groupId>
26 <artifactId>transaction</artifactId>
David Matějček0ed4fff2021-11-28 18:55:50 +010027 <version>7.0.0-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053028 </parent>
arjantijmsefe3cd12021-08-22 00:40:59 +020029
Vinay Vishal57171472018-09-18 20:22:00 +053030 <artifactId>jts</artifactId>
31 <packaging>glassfish-jar</packaging>
David Matějčekf4dc06a2021-05-17 12:10:57 +020032
Vinay Vishal57171472018-09-18 20:22:00 +053033 <name>JTS Implementation for Glassfish</name>
David Matějčekf4dc06a2021-05-17 12:10:57 +020034
Vinay Vishal57171472018-09-18 20:22:00 +053035 <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 Vishal57171472018-09-18 20:22:00 +053050 <dependencies>
51 <dependency>
52 <groupId>org.glassfish.hk2</groupId>
53 <artifactId>hk2-core</artifactId>
54 </dependency>
55 <dependency>
Tom Jenkinson44875442018-11-09 09:28:10 +000056 <groupId>jakarta.transaction</groupId>
57 <artifactId>jakarta.transaction-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053058 </dependency>
59 <dependency>
Steve Millidge15e87492018-11-13 08:20:41 +000060 <groupId>jakarta.resource</groupId>
61 <artifactId>jakarta.resource-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053062 </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ček039e0f92021-09-06 11:41:34 +0200112 <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 Vishal57171472018-09-18 20:22:00 +0530126 <groupId>org.glassfish.main.connectors</groupId>
127 <artifactId>connectors-runtime</artifactId>
128 <version>${project.version}</version>
129 <scope>test</scope>
130 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530131 </dependencies>
arjantijmsefe3cd12021-08-22 00:40:59 +0200132
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 Vishal57171472018-09-18 20:22:00 +0530146</project>