459N/A<?xml version="1.0" encoding="iso-8859-1"?>
459N/A<!--
459N/A
459N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
459N/A
811N/A Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
459N/A
459N/A The contents of this file are subject to the terms of either the GNU
459N/A General Public License Version 2 only ("GPL") or the Common Development
459N/A and Distribution License("CDDL") (collectively, the "License"). You
459N/A may not use this file except in compliance with the License. You can
459N/A obtain a copy of the License at
459N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
459N/A or packager/legal/LICENSE.txt. See the License for the specific
459N/A language governing permissions and limitations under the License.
459N/A
459N/A When distributing the software, include this License Header Notice in each
459N/A file and include the License file at packager/legal/LICENSE.txt.
459N/A
459N/A GPL Classpath Exception:
459N/A Oracle designates this particular file as subject to the "Classpath"
459N/A exception as provided by Oracle in the GPL Version 2 section of the License
459N/A file that accompanied this code.
459N/A
459N/A Modifications:
459N/A If applicable, add the following below the License Header, with the fields
459N/A enclosed by brackets [] replaced by your own identifying information:
459N/A "Portions Copyright [year] [name of copyright owner]"
459N/A
459N/A Contributor(s):
459N/A If you wish your version of this file to be governed by only the CDDL or
459N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
459N/A elects to include this software in this distribution under the [CDDL or GPL
459N/A Version 2] license." If you don't indicate a single choice of license, a
459N/A recipient has the option to distribute your version of this file under
459N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
459N/A its licensees as provided above. However, if you add GPL Version 2 code
459N/A and therefore, elected the GPL Version 2 license, then the option applies
459N/A only if the new code is made subject to such option by the copyright
459N/A holder.
459N/A
459N/A-->
459N/A
459N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
459N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
459N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
459N/A http://maven.apache.org/maven-v4_0_0.xsd">
459N/A <parent>
459N/A <groupId>com.sun.mail</groupId>
459N/A <artifactId>all</artifactId>
813N/A <version>1.5.6-SNAPSHOT</version>
459N/A </parent>
459N/A <modelVersion>4.0.0</modelVersion>
459N/A <groupId>com.sun.mail</groupId>
459N/A <artifactId>gimap</artifactId>
459N/A <packaging>jar</packaging>
459N/A <name>JavaMail API Gmail IMAP provider</name>
459N/A
459N/A <properties>
459N/A <mail.packages.export>
459N/A com.sun.mail.gimap; version=${mail.version}
459N/A </mail.packages.export>
583N/A <findbugs.exclude>
583N/A ${project.basedir}/exclude.xml
583N/A </findbugs.exclude>
459N/A </properties>
459N/A
459N/A <build>
459N/A <plugins>
459N/A <!--
459N/A Configure FindBugs to run with "mvn findbugs:findbugs"
459N/A and generate XML output that can be used by the Hudson
459N/A FindBugs plugin.
459N/A -->
459N/A <plugin>
459N/A <groupId>org.codehaus.mojo</groupId>
459N/A <artifactId>findbugs-maven-plugin</artifactId>
459N/A <configuration>
459N/A <skip>false</skip>
459N/A <threshold>${findbugs.threshold}</threshold>
583N/A <excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
459N/A <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
459N/A </configuration>
459N/A </plugin>
459N/A </plugins>
459N/A </build>
459N/A
459N/A <dependencies>
459N/A <dependency>
459N/A <groupId>com.sun.mail</groupId>
459N/A <artifactId>javax.mail</artifactId>
459N/A </dependency>
459N/A </dependencies>
459N/A
459N/A <reporting>
459N/A <plugins>
459N/A <!--
459N/A Configure FindBugs to run with "mvn site" and
459N/A generate html output that can be viewed directly.
459N/A -->
459N/A <plugin>
459N/A <groupId>org.codehaus.mojo</groupId>
459N/A <artifactId>findbugs-maven-plugin</artifactId>
459N/A <configuration>
459N/A <skip>false</skip>
459N/A <threshold>${findbugs.threshold}</threshold>
459N/A <!--
459N/A <excludeFilterFile>exclude.xml</excludeFilterFile>
459N/A -->
459N/A </configuration>
459N/A </plugin>
459N/A </plugins>
459N/A </reporting>
459N/A</project>