blob: 60b1eedff948218107a8f263224c8e7c8bca00fb [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
arjantijms2d9f1552021-03-08 15:49:56 +010020<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">
21 <modelVersion>4.0.0</modelVersion>
22
Vinay Vishal57171472018-09-18 20:22:00 +053023 <parent>
24 <groupId>org.glassfish.main.admin</groupId>
25 <artifactId>nucleus-admin</artifactId>
David Matějček61066a32021-06-18 10:29:59 +020026 <version>6.2.1-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053027 </parent>
arjantijms2d9f1552021-03-08 15:49:56 +010028
Vinay Vishal57171472018-09-18 20:22:00 +053029 <artifactId>config-api</artifactId>
30 <packaging>glassfish-jar</packaging>
arjantijms2d9f1552021-03-08 15:49:56 +010031
Vinay Vishal57171472018-09-18 20:22:00 +053032 <name>admin-config-api</name>
33
34 <developers>
35 <developer>
36 <id>tmueller</id>
37 <name>Tom Mueller</name>
38 <organization>Oracle, Inc.</organization>
39 <roles>
40 <role>lead</role>
41 <role>developer</role>
42 </roles>
43 </developer>
44 <developer>
45 <id>dochez</id>
46 <name>Jerome Dochez</name>
47 <url>http://blogs.sun.com/dochez</url>
48 <organization>Oracle, Inc.</organization>
49 <roles>
50 <role>developer</role>
51 </roles>
52 </developer>
53 </developers>
54
55 <properties>
56 <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
57 </properties>
58
Vinay Vishal57171472018-09-18 20:22:00 +053059 <dependencies>
60 <dependency>
61 <groupId>org.glassfish.hk2</groupId>
62 <artifactId>hk2</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.glassfish.main.common</groupId>
66 <artifactId>common-util</artifactId>
67 <version>${project.version}</version>
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.annotations</groupId>
76 <artifactId>logging-annotation-processor</artifactId>
77 <optional>true</optional>
78 </dependency>
79
80 <!-- test dependencies -->
81 <dependency>
82 <groupId>org.glassfish.main.tests</groupId>
83 <artifactId>utils</artifactId>
84 <version>${project.version}</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
smillidgeee7f4002020-07-17 20:44:15 +010088 <groupId>jakarta.el</groupId>
89 <artifactId>jakarta.el-api</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
Vinay Vishal57171472018-09-18 20:22:00 +053093 <groupId>org.glassfish</groupId>
Vinay Vishal00e18e92018-12-07 10:16:31 +053094 <artifactId>jakarta.el</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053095 <scope>test</scope>
96 </dependency>
David Matějček8b5a1702021-07-05 21:09:31 +020097 <dependency>
98 <groupId>org.hamcrest</groupId>
99 <artifactId>hamcrest</artifactId>
100 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530101 </dependencies>
arjantijms2d9f1552021-03-08 15:49:56 +0100102
103 <build>
104 <resources>
105 <resource>
106 <directory>src/main/java</directory>
107 <includes>
108 <include>**/*.properties</include>
109 </includes>
110 </resource>
111 </resources>
112 <plugins>
113 <plugin>
arjantijms2d9f1552021-03-08 15:49:56 +0100114 <artifactId>maven-surefire-plugin</artifactId>
115 <configuration>
116 <enableAssertions>false</enableAssertions>
117 </configuration>
118 </plugin>
arjantijms2d9f1552021-03-08 15:49:56 +0100119 </plugins>
120 </build>
Vinay Vishal57171472018-09-18 20:22:00 +0530121</project>