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