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