Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
Jayasheelan Kumar | a6a684d | 2019-01-08 11:07:04 +0530 | [diff] [blame] | 4 | Copyright (c) 1997, 2019 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.web</groupId> |
| 23 | <artifactId>web</artifactId> |
Jayasheelan Kumar | 56e520f | 2019-01-04 15:31:35 +0530 | [diff] [blame] | 24 | <version>5.1.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>web-core</artifactId> |
| 29 | <packaging>glassfish-jar</packaging> |
| 30 | |
| 31 | <name>Core Servlet Container</name> |
| 32 | |
| 33 | <developers> |
| 34 | <developer> |
| 35 | <id>shingwaichan</id> |
| 36 | <name>Shing Wai Chan</name> |
| 37 | <organization>Oracle</organization> |
| 38 | <roles> |
| 39 | <role>lead</role> |
| 40 | <role>developer</role> |
| 41 | </roles> |
| 42 | </developer> |
| 43 | <developer> |
| 44 | <id>amyroh</id> |
| 45 | <name>Amy Roh</name> |
| 46 | <organization>Oracle</organization> |
| 47 | <roles> |
| 48 | <role>developer</role> |
| 49 | </roles> |
| 50 | </developer> |
| 51 | <developer> |
| 52 | <id>edburns</id> |
| 53 | <name>Ed Burns</name> |
| 54 | <url>http://ridingthecrest.com/blog/</url> |
| 55 | <organization>Oracle</organization> |
| 56 | <roles> |
| 57 | <role>developer</role> |
| 58 | </roles> |
| 59 | </developer> |
| 60 | <developer> |
| 61 | <id>kchung</id> |
| 62 | <name>Kin-man Chung</name> |
| 63 | <organization>Oracle</organization> |
| 64 | <roles> |
| 65 | <role>developer</role> |
| 66 | </roles> |
| 67 | </developer> |
| 68 | </developers> |
| 69 | |
| 70 | <properties> |
| 71 | <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude> |
| 72 | </properties> |
| 73 | |
| 74 | <dependencies> |
| 75 | <dependency> |
Stuart Douglas | cb5bc8e | 2018-12-01 12:10:01 +1100 | [diff] [blame] | 76 | <groupId>jakarta.servlet</groupId> |
| 77 | <artifactId>jakarta.servlet-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.glassfish.grizzly</groupId> |
| 81 | <artifactId>grizzly-http</artifactId> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.glassfish.main.common</groupId> |
| 85 | <artifactId>glassfish-api</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.glassfish.main.common</groupId> |
| 90 | <artifactId>internal-api</artifactId> |
| 91 | <version>${project.version}</version> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.glassfish.main.common</groupId> |
| 95 | <artifactId>common-util</artifactId> |
| 96 | <version>${project.version}</version> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.glassfish.main.web</groupId> |
| 100 | <artifactId>war-util</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.glassfish.main.common</groupId> |
| 105 | <artifactId>container-common</artifactId> |
| 106 | <version>${project.version}</version> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.glassfish.main.web</groupId> |
| 110 | <artifactId>web-naming</artifactId> |
| 111 | <version>${project.version}</version> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.glassfish.annotations</groupId> |
| 115 | <artifactId>logging-annotation-processor</artifactId> |
| 116 | <optional>true</optional> |
| 117 | </dependency> |
| 118 | <dependency> <!-- for FindBugs --> |
| 119 | <groupId>org.osgi</groupId> |
| 120 | <artifactId>osgi.core</artifactId> |
| 121 | <scope>provided</scope> |
| 122 | </dependency> |
| 123 | </dependencies> |
| 124 | </project> |