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 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.glassfish.main.common</groupId> |
| 24 | <artifactId>common</artifactId> |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame^] | 25 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | </parent> |
| 27 | <artifactId>annotation-framework</artifactId> |
| 28 | <packaging>glassfish-jar</packaging> |
| 29 | |
| 30 | <name>GlassFish Java EE Annotation Framework</name> |
| 31 | |
| 32 | <developers> |
| 33 | <developer> |
| 34 | <id>dochez</id> |
| 35 | <name>Jerome Dochez</name> |
| 36 | <url>http://blogs.sun.com/dochez</url> |
| 37 | <organization>Oracle, Inc.</organization> |
| 38 | <roles> |
| 39 | <role>lead</role> |
| 40 | <role>developer</role> |
| 41 | </roles> |
| 42 | </developer> |
| 43 | <developer> |
| 44 | <id>hzhang_jn</id> |
| 45 | <name>Hong Zhang</name> |
| 46 | <url>http://blogs.sun.com/misty</url> |
| 47 | <organization>Oracle, Inc.</organization> |
| 48 | <roles> |
| 49 | <role>developer</role> |
| 50 | </roles> |
| 51 | </developer> |
| 52 | </developers> |
| 53 | <build> |
| 54 | <sourceDirectory>src/main/java</sourceDirectory> |
| 55 | <resources> |
| 56 | <resource> |
| 57 | <directory>src/main/java/org/glassfish/apf</directory> |
| 58 | <includes> |
| 59 | <include>skip-annotation-class-list</include> |
| 60 | </includes> |
| 61 | </resource> |
| 62 | </resources> |
| 63 | </build> |
| 64 | <dependencies> |
| 65 | <dependency> |
| 66 | <groupId>org.glassfish.hk2</groupId> |
| 67 | <artifactId>hk2</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.glassfish.main.common</groupId> |
| 71 | <artifactId>glassfish-api</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.glassfish.hk2</groupId> |
| 76 | <artifactId>hk2-junitrunner</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.glassfish.main.common</groupId> |
| 81 | <artifactId>common-util</artifactId> |
| 82 | <version>${project.version}</version> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | </project> |