| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 2009, 2021 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.glassfish.main</groupId> |
| <artifactId>glassfish-parent</artifactId> |
| <version>7.0.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.glassfish.main.admingui</groupId> |
| <artifactId>admingui</artifactId> |
| <packaging>pom</packaging> |
| |
| <name>Admin Console Packages</name> |
| |
| <developers> |
| <developer> |
| <id>anilam</id> |
| <name>Anissa Lam</name> |
| <url>http://blogs.sun.com/anilam</url> |
| <organization>Oracle, Inc.</organization> |
| <roles> |
| <role>lead</role> |
| <role>developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <id>jdlee</id> |
| <name>Jason Lee</name> |
| <url>http://blogs.steeplesoft.com/</url> |
| <organization>Oracle, Inc.</organization> |
| <roles> |
| <role>developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <id>sirajg</id> |
| <name>Siraj Ghaffar</name> |
| <organization>Oracle, Inc.</organization> |
| <roles> |
| <role>developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <id>srinik76</id> |
| <name>Srinivas Krishnan</name> |
| <organization>Oracle, Inc.</organization> |
| <roles> |
| <role>developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <id>sumasri</id> |
| <name>Suma Sri Uppala</name> |
| <organization>Oracle, Inc.</organization> |
| <roles> |
| <role>developer</role> |
| </roles> |
| </developer> |
| </developers> |
| |
| <modules> |
| <module>dataprovider</module> |
| <module>plugin-service</module> |
| <module>common</module> |
| <module>core</module> |
| <module>concurrent</module> |
| <module>cluster</module> |
| <module>community-theme</module> |
| <module>web</module> |
| <module>gf-admingui-connector</module> |
| <module>jackson-jaxb</module> |
| <module>jts</module> |
| <module>jdbc</module> |
| <module>jca</module> |
| <module>jms-plugin</module> |
| <module>ejb</module> |
| <module>ejb-lite</module> |
| <module>corba</module> |
| <module>full</module> |
| <module>war</module> |
| <module>dist-fragment</module> |
| </modules> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.glassfish.hk2</groupId> |
| <artifactId>hk2-core</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.glassfish.jsftemplating</groupId> |
| <artifactId>jsftemplating</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.glassfish.jsftemplating</groupId> |
| <artifactId>jsftemplating-dt</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.glassfish</groupId> |
| <artifactId>jakarta.faces</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.servlet</groupId> |
| <artifactId>jakarta.servlet-api</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <excludes> |
| <exclude>**/*.jar</exclude> |
| <exclude>**/.gitkeep_empty_dir</exclude> |
| </excludes> |
| </resource> |
| <resource> |
| <directory>src/main/help</directory> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>unpack-dependencies</id> |
| <goals> |
| <goal>unpack-dependencies</goal> |
| </goals> |
| <configuration> |
| <includeGroupIds>org.glassfish.docs.help</includeGroupIds> |
| <excludeTransitive>true</excludeTransitive> |
| <outputDirectory>${project.build.outputDirectory}</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |