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