Cross Reference: pom.xml
xref
: /
javamail
/
javadoc
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
pom.xml revision 52
52
N/A
<?
xml
version=
"1.0"
encoding=
"iso-8859-1"
?>
52
N/A
<!--
52
N/A
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
52
N/A
52
N/A
Copyright 1997-2008 Sun Microsystems, Inc. All rights reserved.
52
N/A
52
N/A
The contents of this file are subject to the terms of either the GNU
52
N/A
General Public License Version 2 only ("GPL") or the Common Development
52
N/A
and Distribution License("CDDL") (collectively, the "License"). You
52
N/A
may not use this file except in compliance with the License. You can obtain
52
N/A
a copy of the License at
https://glassfish.dev.java.net/public/CDDL+GPL.html
52
N/A
or
glassfish
/
bootstrap
/
legal
/
LICENSE.txt
. See the License for the specific
52
N/A
language governing permissions and limitations under the License.
52
N/A
52
N/A
When distributing the software, include this License Header Notice in each
52
N/A
file and include the License file at
glassfish
/
bootstrap
/
legal
/
LICENSE.txt
.
52
N/A
Sun designates this particular file as subject to the "Classpath" exception
52
N/A
as provided by Sun in the GPL Version 2 section of the License file that
52
N/A
accompanied this code. If applicable, add the following below the License
52
N/A
Header, with the fields enclosed by brackets [] replaced by your own
52
N/A
identifying information: "Portions Copyrighted [year]
52
N/A
[name of copyright owner]"
52
N/A
52
N/A
Contributor(s):
52
N/A
52
N/A
If you wish your version of this file to be governed by only the CDDL or
52
N/A
only the GPL Version 2, indicate your decision by adding "[Contributor]
52
N/A
elects to include this software in this distribution under the [CDDL or GPL
52
N/A
Version 2] license." If you don't indicate a single choice of license, a
52
N/A
recipient has the option to distribute your version of this file under
52
N/A
either the CDDL, the GPL Version 2 or to extend the choice of license to
52
N/A
its licensees as provided above. However, if you add GPL Version 2 code
52
N/A
and therefore, elected the GPL Version 2 license, then the option applies
52
N/A
only if the new code is made subject to such option by the copyright
52
N/A
holder.
52
N/A
-->
52
N/A
15
N/A
<
project
xmlns=
"
http://maven.apache.org/POM/4.0.0
"
15
N/A
xmlns
:
xsi=
"
http://www.w3.org/2001/XMLSchema-instance
"
15
N/A
xsi
:
schemaLocation=
"
http://maven.apache.org/POM/4.0.0
15
N/A
http://maven.apache.org/maven-v4_0_0.xsd
"
>
15
N/A
<
parent
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
15
N/A
<
artifactId
>all</
artifactId
>
15
N/A
<
version
>1.4.2-SNAPSHOT</
version
>
15
N/A
</
parent
>
15
N/A
<
modelVersion
>4.0.0</
modelVersion
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
15
N/A
<
artifactId
>javadoc</
artifactId
>
15
N/A
<
packaging
>pom</
packaging
>
15
N/A
<
version
>1.4.2-SNAPSHOT</
version
>
15
N/A
<
name
>JavaMail API javadocs</
name
>
15
N/A
<
description
>${
project.name
}</
description
>
15
N/A
15
N/A
<
build
>
15
N/A
<
plugins
>
15
N/A
<!--
15
N/A
To allow us to generate javadocs that only include some
15
N/A
classes in certain packages, we need to copy the sources
15
N/A
to another location and run javadoc against that subset
15
N/A
of the sources. This ant task does the copy.
15
N/A
-->
15
N/A
<
plugin
>
15
N/A
<
artifactId
>maven-antrun-plugin</
artifactId
>
15
N/A
<
inherited
>false</
inherited
>
15
N/A
<
executions
>
15
N/A
<
execution
>
15
N/A
<
phase
>package</
phase
>
15
N/A
<
configuration
>
15
N/A
<
tasks
>
15
N/A
15
N/A
<
copy
todir=
"
target
/
javadoc
"
>
15
N/A
<
fileset
dir=
"/
mail
/
src
/
main
/
java
"
>
15
N/A
<
include
name=
"**/*.html"
/>
15
N/A
<
include
name=
"
javax
/
mail
/**"
/>
15
N/A
</
fileset
>
15
N/A
<
fileset
dir=
"/
mail
/
src
/
main
/
java
"
15
N/A
includes=
"
15
N/A
com
/
sun
/
mail
/
imap
/
IMAPFolder.java
,
15
N/A
com
/
sun
/
mail
/
imap
/
IMAPMessage.java
,
15
N/A
com
/
sun
/
mail
/
imap
/
IMAPStore.java
,
15
N/A
com
/
sun
/
mail
/
imap
/
IMAPSSLStore.java
15
N/A
com
/
sun
/
mail
/
imap
/
ACL.java
,
15
N/A
com
/
sun
/
mail
/
imap
/
Rights.java
,
15
N/A
com
/
sun
/
mail
/
imap
/
Quota.java
,
15
N/A
com
/
sun
/
mail
/
pop3
/
POP3Store.java
,
15
N/A
com
/
sun
/
mail
/
pop3
/
POP3SSLStore.java
,
15
N/A
com
/
sun
/
mail
/
pop3
/
POP3Folder.java
,
15
N/A
com
/
sun
/
mail
/
pop3
/
POP3Message.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPMessage.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPAddressFailedException.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPAddressSucceededException.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPSendFailedException.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPTransport.java
,
15
N/A
com
/
sun
/
mail
/
smtp
/
SMTPSSLTransport.java
15
N/A
"
/>
15
N/A
<
fileset
dir=
"/
dsn
/
src
/
main
/
java
"
15
N/A
includes=
"
15
N/A
com
/
sun
/
mail
/
dsn
/
DeliveryStatus.java
,
15
N/A
com
/
sun
/
mail
/
dsn
/
MessageHeaders.java
,
15
N/A
com
/
sun
/
mail
/
dsn
/
MultipartReport.java
15
N/A
"
/>
15
N/A
</
copy
>
15
N/A
15
N/A
</
tasks
>
15
N/A
</
configuration
>
15
N/A
<
goals
>
15
N/A
<
goal
>run</
goal
>
15
N/A
</
goals
>
15
N/A
</
execution
>
15
N/A
</
executions
>
15
N/A
</
plugin
>
15
N/A
15
N/A
<
plugin
>
15
N/A
<
artifactId
>maven-javadoc-plugin</
artifactId
>
15
N/A
<
inherited
>false</
inherited
>
15
N/A
<
executions
>
15
N/A
<
execution
>
15
N/A
<
phase
>package</
phase
>
15
N/A
<
goals
>
15
N/A
<
goal
>javadoc</
goal
>
15
N/A
</
goals
>
15
N/A
<
configuration
>
15
N/A
<!-- aggregate not really needed -->
15
N/A
<
aggregate
>false</
aggregate
>
15
N/A
<
additionalJOption
>-J-Xmx32m</
additionalJOption
>
15
N/A
<
author
>false</
author
>
15
N/A
<
description
>
15
N/A
JavaMail API documentation
15
N/A
</
description
>
15
N/A
<
doctitle
>
15
N/A
JavaMail API documentation
15
N/A
</
doctitle
>
15
N/A
<
windowtitle
>
15
N/A
JavaMail API documentation
15
N/A
</
windowtitle
>
15
N/A
<
splitindex
>true</
splitindex
>
15
N/A
<
use
>true</
use
>
15
N/A
<
overview
>
15
N/A
${basedir}/
target
/
javadoc
/
overview.html
15
N/A
</
overview
>
15
N/A
<
groups
>
15
N/A
<
group
>
15
N/A
<
title
>JavaMail API Packages</
title
>
15
N/A
<
packages
>javax.*</
packages
>
15
N/A
</
group
>
15
N/A
<
group
>
15
N/A
<
title
>Sun-specific Packages</
title
>
15
N/A
<
packages
>
com.sun.
*</
packages
>
15
N/A
</
group
>
15
N/A
</
groups
>
15
N/A
<
subpackages
>
15
N/A
javax:
com.sun.mail.imap
:
com.sun.mail.pop3
:
com.sun.mail.smtp
:
com.sun.mail.dsn
15
N/A
</
subpackages
>
15
N/A
<!-- XXX - following should work, but doesn't -->
15
N/A
<
excludePackageNames
>
15
N/A
com.sun.mail.imap.protocol
15
N/A
</
excludePackageNames
>
15
N/A
<!-- have to kludge it with this instead... -->
15
N/A
<
additionalparam
>
15
N/A
-exclude
com.sun.mail.imap.protocol
15
N/A
</
additionalparam
>
15
N/A
<
sourcepath
>${basedir}/
target
/
javadoc
</
sourcepath
>
15
N/A
</
configuration
>
15
N/A
</
execution
>
15
N/A
</
executions
>
15
N/A
</
plugin
>
15
N/A
</
plugins
>
15
N/A
15
N/A
<!--
15
N/A
<resources>
15
N/A
<resource>
15
N/A
<directory>/
src
/
main
/
resources
</directory>
15
N/A
</resource>
15
N/A
</resources>
15
N/A
-->
15
N/A
</
build
>
15
N/A
15
N/A
<
dependencies
>
15
N/A
<
dependency
>
15
N/A
<
groupId
>
javax.mail
</
groupId
>
15
N/A
<
artifactId
>mail</
artifactId
>
15
N/A
</
dependency
>
15
N/A
<
dependency
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
15
N/A
<
artifactId
>dsn</
artifactId
>
15
N/A
</
dependency
>
15
N/A
</
dependencies
>
15
N/A
</
project
>