blob: 50162ce38be0aa167fca594742c023081da2c96a [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
hussainnm53712522021-02-18 19:46:31 +05304 Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05305
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 <parent>
22 <groupId>org.glassfish.main.deployment</groupId>
23 <artifactId>deployment</artifactId>
David Matějček61066a32021-06-18 10:29:59 +020024 <version>6.2.1-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053025 <relativePath>../pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>deployment-javaee-core</artifactId>
29 <packaging>glassfish-jar</packaging>
David Matějčekf4dc06a2021-05-17 12:10:57 +020030
Vinay Vishal57171472018-09-18 20:22:00 +053031 <name>Deployment Related JavaEE Core Classes</name>
32
33 <developers>
34 <developer>
35 <id>hzhang_jn</id>
36 <name>Hong Zhang</name>
37 <url>http://blogs.sun.com/misty</url>
38 <organization>Oracle, Inc.</organization>
39 <roles>
40 <role>lead</role>
41 <role>developer</role>
42 </roles>
43 </developer>
44 <developer>
45 <id>tjquinn</id>
46 <name>Tim Quinn</name>
47 <url>http://blogs.sun.com/quinn</url>
48 <organization>Oracle, Inc.</organization>
49 <roles>
50 <role>developer</role>
51 </roles>
52 </developer>
53 <developer>
54 <id>dochez</id>
55 <name>Jerome Dochez</name>
56 <url>http://blogs.sun.com/dochez</url>
57 <organization>Oracle, Inc.</organization>
58 <roles>
59 <role>developer</role>
60 </roles>
61 </developer>
62 </developers>
63
64 <build>
65 <resources>
66 <resource>
67 <directory>src/main/java</directory>
68 <includes>
69 <include>**/*.properties</include>
70 </includes>
71 </resource>
72 </resources>
73 </build>
74
75 <dependencies>
Vinay Vishal57171472018-09-18 20:22:00 +053076 <dependency>
77 <groupId>org.glassfish.main.admin</groupId>
78 <artifactId>config-api</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.glassfish.hk2</groupId>
83 <artifactId>hk2-core</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.glassfish.main.common</groupId>
87 <artifactId>glassfish-api</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.glassfish.main.common</groupId>
92 <artifactId>internal-api</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.glassfish.main.deployment</groupId>
97 <artifactId>dol</artifactId>
98 <version>${project.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.glassfish.main.common</groupId>
102 <artifactId>common-util</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.glassfish.main.deployment</groupId>
107 <artifactId>deployment-common</artifactId>
108 <version>${project.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>org.glassfish.main.core</groupId>
112 <artifactId>kernel</artifactId>
113 <version>${project.version}</version>
114 </dependency>
115 </dependencies>
116</project>
117