259N/A<?xml version="1.0" encoding="UTF-8"?>
259N/A<!--
259N/A
259N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
259N/A
259N/A Copyright (c) 2009-2011 Oracle and/or its affiliates. All rights reserved.
259N/A
259N/A The contents of this file are subject to the terms of either the GNU
259N/A General Public License Version 2 only ("GPL") or the Common Development
259N/A and Distribution License("CDDL") (collectively, the "License"). You
259N/A may not use this file except in compliance with the License. You can
259N/A obtain a copy of the License at
259N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
259N/A or packager/legal/LICENSE.txt. See the License for the specific
259N/A language governing permissions and limitations under the License.
259N/A
259N/A When distributing the software, include this License Header Notice in each
259N/A file and include the License file at packager/legal/LICENSE.txt.
259N/A
259N/A GPL Classpath Exception:
2669N/A Oracle designates this particular file as subject to the "Classpath"
259N/A exception as provided by Oracle in the GPL Version 2 section of the License
259N/A file that accompanied this code.
259N/A
259N/A Modifications:
259N/A If applicable, add the following below the License Header, with the fields
259N/A enclosed by brackets [] replaced by your own identifying information:
259N/A "Portions Copyright [year] [name of copyright owner]"
259N/A
618N/A Contributor(s):
817N/A If you wish your version of this file to be governed by only the CDDL or
817N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
618N/A elects to include this software in this distribution under the [CDDL or GPL
1258N/A Version 2] license." If you don't indicate a single choice of license, a
259N/A recipient has the option to distribute your version of this file under
2899N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
2899N/A its licensees as provided above. However, if you add GPL Version 2 code
259N/A and therefore, elected the GPL Version 2 license, then the option applies
259N/A only if the new code is made subject to such option by the copyright
259N/A holder.
259N/A
259N/A-->
259N/A
259N/A<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">
259N/A <modelVersion>4.0.0</modelVersion>
259N/A <parent>
2669N/A <groupId>org.glassfish.main.admingui</groupId>
2669N/A <artifactId>admingui</artifactId>
1467N/A <version>3.1.2</version>
259N/A <relativePath>/pom.xml</relativePath>
259N/A </parent>
259N/A <artifactId>console-jca-plugin</artifactId>
259N/A <packaging>hk2-jar</packaging>
1467N/A <name>Admin Console Connectors Plugin</name>
259N/A <description>Connectors plugin bundle for GlassFish V3 Admin Console</description>
259N/A
1467N/A <developers>
1467N/A <developer>
1467N/A <id>anilam</id>
259N/A <name>Anissa Lam</name>
259N/A <url>http://blogs.sun.com/anilam</url>
259N/A <organization>Oracle, Inc.</organization>
259N/A <roles>
259N/A <role>developer</role>
259N/A </roles>
259N/A </developer>
259N/A </developers>
259N/A
259N/A <build>
259N/A <plugins>
259N/A <plugin>
259N/A <artifactId>maven-clean-plugin</artifactId>
259N/A <executions>
259N/A <execution>
259N/A <id>auto-clean</id>
259N/A <phase>initialize</phase>
259N/A <goals>
259N/A <goal>clean</goal>
259N/A </goals>
259N/A </execution>
259N/A </executions>
259N/A </plugin>
259N/A </plugins>
259N/A <resources>
259N/A <resource>
259N/A <directory>src/main/resources</directory>
259N/A <excludes>
259N/A <exclude>**/*.jar</exclude>
259N/A </excludes>
259N/A </resource>
259N/A </resources>
259N/A </build>
259N/A
259N/A <dependencies>
259N/A <dependency>
259N/A <groupId>org.glassfish.main.admingui</groupId>
259N/A <artifactId>console-plugin-service</artifactId>
259N/A <version>${project.version}</version>
259N/A <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.main.admingui</groupId>
<artifactId>console-common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>