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) 1997, 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 | <parent> |
| 22 | <groupId>org.glassfish.main.common</groupId> |
| 23 | <artifactId>common</artifactId> |
Arjan Tijms | 492a711 | 2021-02-10 00:43:04 +0100 | [diff] [blame^] | 24 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <artifactId>container-common</artifactId> |
| 29 | <packaging>glassfish-jar</packaging> |
| 30 | |
| 31 | <name>Container Common</name> |
| 32 | |
| 33 | <developers> |
| 34 | <developer> |
| 35 | <id>maheshk</id> |
| 36 | <name>Mahesh Kannan</name> |
| 37 | <organization>Oracle, Inc.</organization> |
| 38 | <roles> |
| 39 | <role>developer</role> |
| 40 | </roles> |
| 41 | </developer> |
| 42 | </developers> |
| 43 | |
| 44 | <build> |
| 45 | <resources> |
| 46 | <resource> |
| 47 | <directory>src/main/java</directory> |
| 48 | <includes> |
| 49 | <include>org/glassfish/javaee/**/*.properties</include> |
| 50 | </includes> |
| 51 | </resource> |
| 52 | <resource> |
| 53 | <directory>src/main/resources</directory> |
| 54 | <includes> |
| 55 | <include>**/*.1</include> |
| 56 | <include>**/*.properties</include> |
| 57 | </includes> |
| 58 | </resource> |
| 59 | </resources> |
| 60 | </build> |
| 61 | |
| 62 | <dependencies> |
| 63 | <dependency> |
| 64 | <groupId>org.glassfish.hk2</groupId> |
| 65 | <artifactId>hk2-core</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
Stuart Douglas | cb5bc8e | 2018-12-01 12:10:01 +1100 | [diff] [blame] | 68 | <groupId>jakarta.servlet</groupId> |
| 69 | <artifactId>jakarta.servlet-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.glassfish.main.common</groupId> |
| 73 | <artifactId>glassfish-naming</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.glassfish.main.common</groupId> |
| 78 | <artifactId>glassfish-api</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.glassfish.main.common</groupId> |
| 83 | <artifactId>internal-api</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.glassfish.main.deployment</groupId> |
| 88 | <artifactId>dol</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.glassfish.main.common</groupId> |
| 93 | <artifactId>common-util</artifactId> |
| 94 | <version>${project.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.glassfish.main.admin</groupId> |
| 98 | <artifactId>config-api</artifactId> |
| 99 | <version>${project.version}</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.glassfish.main.admin</groupId> |
| 103 | <artifactId>admin-util</artifactId> |
| 104 | <version>${project.version}</version> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>com.sun.mail</groupId> |
Bill Shannon | f9b3395 | 2018-11-09 01:37:13 -0800 | [diff] [blame] | 108 | <artifactId>jakarta.mail</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.glassfish.main.security</groupId> |
| 112 | <artifactId>security</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.glassfish.main.connectors</groupId> |
| 117 | <artifactId>connectors-internal-api</artifactId> |
| 118 | <version>${project.version}</version> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.glassfish.ha</groupId> |
| 122 | <artifactId>ha-api</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>junit</groupId> |
| 126 | <artifactId>junit</artifactId> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | </dependencies> |
| 130 | </project> |