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