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.admin</groupId> |
| 23 | <artifactId>nucleus-admin</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 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>monitoring-core</artifactId> |
| 28 | <packaging>glassfish-jar</packaging> |
| 29 | |
| 30 | <name>admin-monitoring</name> |
| 31 | <description>Glassfish Appserver Admin Monitoring Infrastructure</description> |
| 32 | <developers> |
| 33 | <developer> |
| 34 | <id>bnevins</id> |
| 35 | <name>Byron Nevins</name> |
| 36 | <organization>Oracle, Inc.</organization> |
| 37 | <roles> |
| 38 | <role>developer</role> |
| 39 | <role>lead</role> |
| 40 | </roles> |
| 41 | </developer> |
| 42 | </developers> |
| 43 | <build> |
| 44 | <resources> |
| 45 | <resource> |
| 46 | <directory>src/main/java</directory> |
| 47 | <includes> |
| 48 | <include>**/*.properties</include> |
| 49 | </includes> |
| 50 | </resource> |
| 51 | </resources> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-site-plugin</artifactId> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | <reporting> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
| 63 | <artifactId>maven-surefire-report-plugin</artifactId> |
| 64 | </plugin> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-javadoc-plugin</artifactId> |
| 68 | </plugin> |
| 69 | </plugins> |
| 70 | </reporting> |
| 71 | <dependencies> |
| 72 | <dependency> |
| 73 | <groupId>org.glassfish.main.common</groupId> |
| 74 | <artifactId>common-util</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.glassfish.hk2</groupId> |
| 79 | <artifactId>hk2</artifactId> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.glassfish.main.admin</groupId> |
| 83 | <artifactId>config-api</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.glassfish.main.flashlight</groupId> |
| 88 | <artifactId>flashlight-framework</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.glassfish.external</groupId> |
| 93 | <artifactId>management-api</artifactId> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.glassfish.gmbal</groupId> |
| 97 | <artifactId>gmbal</artifactId> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.glassfish.annotations</groupId> |
| 101 | <artifactId>logging-annotation-processor</artifactId> |
| 102 | <optional>true</optional> |
| 103 | </dependency> |
| 104 | </dependencies> |
| 105 | </project> |