Cross Reference: /javamail/javadoc/pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
52N/A<?xml version="1.0" encoding="iso-8859-1"?>
52N/A<!--
292N/A
52N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
52N/A
745N/A Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
52N/A
52N/A The contents of this file are subject to the terms of either the GNU
52N/A General Public License Version 2 only ("GPL") or the Common Development
52N/A and Distribution License("CDDL") (collectively, the "License"). You
292N/A may not use this file except in compliance with the License. You can
292N/A obtain a copy of the License at
292N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
292N/A or packager/legal/LICENSE.txt. See the License for the specific
52N/A language governing permissions and limitations under the License.
52N/A
52N/A When distributing the software, include this License Header Notice in each
292N/A file and include the License file at packager/legal/LICENSE.txt.
292N/A
292N/A GPL Classpath Exception:
292N/A Oracle designates this particular file as subject to the "Classpath"
292N/A exception as provided by Oracle in the GPL Version 2 section of the License
292N/A file that accompanied this code.
292N/A
292N/A Modifications:
292N/A If applicable, add the following below the License Header, with the fields
292N/A enclosed by brackets [] replaced by your own identifying information:
292N/A "Portions Copyright [year] [name of copyright owner]"
52N/A
52N/A Contributor(s):
52N/A If you wish your version of this file to be governed by only the CDDL or
52N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
52N/A elects to include this software in this distribution under the [CDDL or GPL
52N/A Version 2] license." If you don't indicate a single choice of license, a
52N/A recipient has the option to distribute your version of this file under
52N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
52N/A its licensees as provided above. However, if you add GPL Version 2 code
52N/A and therefore, elected the GPL Version 2 license, then the option applies
52N/A only if the new code is made subject to such option by the copyright
52N/A holder.
292N/A
52N/A-->
52N/A
15N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
15N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
15N/A http://maven.apache.org/maven-v4_0_0.xsd">
15N/A <parent>
15N/A <groupId>com.sun.mail</groupId>
15N/A <artifactId>all</artifactId>
813N/A <version>1.5.6-SNAPSHOT</version>
15N/A </parent>
15N/A <modelVersion>4.0.0</modelVersion>
15N/A <groupId>com.sun.mail</groupId>
15N/A <artifactId>javadoc</artifactId>
15N/A <packaging>pom</packaging>
813N/A <version>1.5.6-SNAPSHOT</version>
15N/A <name>JavaMail API javadocs</name>
15N/A <description>${project.name}</description>
15N/A
15N/A <build>
15N/A <plugins>
15N/A <!--
15N/A To allow us to generate javadocs that only include some
15N/A classes in certain packages, we need to copy the sources
15N/A to another location and run javadoc against that subset
15N/A of the sources. This ant task does the copy.
15N/A -->
15N/A <plugin>
15N/A <artifactId>maven-antrun-plugin</artifactId>
15N/A <inherited>false</inherited>
15N/A <executions>
15N/A <execution>
15N/A <phase>package</phase>
15N/A <configuration>
15N/A <tasks>
15N/A
15N/A <copy todir="target/javadoc">
15N/A <fileset dir="/mail/src/main/java">
15N/A <include name="**/*.html"/>
15N/A <include name="javax/mail/**"/>
15N/A </fileset>
15N/A <fileset dir="/mail/src/main/java"
15N/A includes="
745N/A com/sun/mail/imap/package.html,
15N/A com/sun/mail/imap/IMAPFolder.java,
15N/A com/sun/mail/imap/IMAPMessage.java,
15N/A com/sun/mail/imap/IMAPStore.java,
15N/A com/sun/mail/imap/IMAPSSLStore.java
15N/A com/sun/mail/imap/ACL.java,
15N/A com/sun/mail/imap/Rights.java,
15N/A com/sun/mail/imap/Quota.java,
274N/A com/sun/mail/imap/SortTerm.java,
565N/A com/sun/mail/imap/ResyncData.java,
565N/A com/sun/mail/imap/OlderTerm.java,
565N/A com/sun/mail/imap/YoungerTerm.java,
565N/A com/sun/mail/imap/MessageVanishedEvent.java,
592N/A com/sun/mail/imap/ModifiedSinceTerm.java,
640N/A com/sun/mail/imap/IdleManager.java,
767N/A com/sun/mail/imap/ReferralException.java,
15N/A com/sun/mail/pop3/POP3Store.java,
15N/A com/sun/mail/pop3/POP3SSLStore.java,
15N/A com/sun/mail/pop3/POP3Folder.java,
15N/A com/sun/mail/pop3/POP3Message.java,
15N/A com/sun/mail/smtp/SMTPMessage.java,
15N/A com/sun/mail/smtp/SMTPAddressFailedException.java,
15N/A com/sun/mail/smtp/SMTPAddressSucceededException.java,
15N/A com/sun/mail/smtp/SMTPSendFailedException.java,
262N/A com/sun/mail/smtp/SMTPSenderFailedException.java,
15N/A com/sun/mail/smtp/SMTPTransport.java,
161N/A com/sun/mail/smtp/SMTPSSLTransport.java,
545N/A com/sun/mail/util/MailConnectException.java,
168N/A com/sun/mail/util/MailSSLSocketFactory.java,
412N/A com/sun/mail/util/ReadableMime.java,
815N/A com/sun/mail/util/logging/*.java
15N/A "/>
15N/A <fileset dir="/dsn/src/main/java"
15N/A includes="
290N/A com/sun/mail/dsn/package.html,
15N/A com/sun/mail/dsn/DeliveryStatus.java,
133N/A com/sun/mail/dsn/DispositionNotification.java,
15N/A com/sun/mail/dsn/MessageHeaders.java,
133N/A com/sun/mail/dsn/MultipartReport.java,
133N/A com/sun/mail/dsn/Report.java
15N/A "/>
459N/A <fileset dir="/gimap/src/main/java"
459N/A includes="
459N/A com/sun/mail/gimap/package.html,
815N/A com/sun/mail/gimap/*.java
459N/A "/>
15N/A </copy>
15N/A
15N/A </tasks>
15N/A </configuration>
15N/A <goals>
15N/A <goal>run</goal>
15N/A </goals>
15N/A </execution>
15N/A </executions>
15N/A </plugin>
15N/A
15N/A <plugin>
15N/A <artifactId>maven-javadoc-plugin</artifactId>
15N/A <inherited>false</inherited>
15N/A <executions>
15N/A <execution>
15N/A <phase>package</phase>
15N/A <goals>
15N/A <goal>javadoc</goal>
15N/A </goals>
15N/A <configuration>
665N/A <additionalJOption>-J-Xmx256m</additionalJOption>
15N/A <author>false</author>
15N/A <description>
15N/A JavaMail API documentation
15N/A </description>
15N/A <doctitle>
15N/A JavaMail API documentation
15N/A </doctitle>
15N/A <windowtitle>
15N/A JavaMail API documentation
15N/A </windowtitle>
15N/A <splitindex>true</splitindex>
15N/A <use>true</use>
815N/A <notimestamp>true</notimestamp>
815N/A <serialwarn>true</serialwarn>
815N/A <quiet>true</quiet>
15N/A <overview>
15N/A ${basedir}/target/javadoc/overview.html
15N/A </overview>
516N/A <bottom>
745N/A<![CDATA[Copyright &#169; 1996-2015,
516N/A <a href="http://www.oracle.com">Oracle</a>
516N/A and/or its affiliates. All Rights Reserved.
516N/A Use is subject to
517N/A <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.
516N/A]]>
516N/A </bottom>
15N/A <groups>
15N/A <group>
15N/A <title>JavaMail API Packages</title>
15N/A <packages>javax.*</packages>
15N/A </group>
15N/A <group>
575N/A <title>RI-specific Packages</title>
15N/A <packages>com.sun.*</packages>
15N/A </group>
15N/A </groups>
15N/A <subpackages>
609N/Ajavax:com.sun.mail.imap:com.sun.mail.pop3:com.sun.mail.smtp:com.sun.mail.dsn:com.sun.mail.util:com.sun.mail.gimap
15N/A </subpackages>
15N/A <excludePackageNames>
745N/A com.sun.mail.imap.protocol:com.sun.mail.gimap.protocol
15N/A </excludePackageNames>
15N/A <sourcepath>${basedir}/target/javadoc</sourcepath>
615N/A <!--
615N/A Links to Java SE javadocs.
615N/A
615N/A XXX - links need to include a trailing "/."
615N/A because Maven strips off a trailing "/"
615N/A before passing the option to the javadoc
615N/A command, which then strips off the last
615N/A name if it doesn't end with "/".
615N/A -->
76N/A <links>
615N/A <link>http://docs.oracle.com/javase/1.5.0/docs/api/.</link>
459N/A <!-- following for javax.activation -->
615N/A <link>http://docs.oracle.com/javase/6/docs/api/.</link>
76N/A </links>
15N/A </configuration>
15N/A </execution>
15N/A </executions>
15N/A </plugin>
15N/A </plugins>
15N/A </build>
15N/A
15N/A <dependencies>
15N/A <dependency>
308N/A <groupId>com.sun.mail</groupId>
308N/A <artifactId>javax.mail</artifactId>
15N/A </dependency>
15N/A <dependency>
15N/A <groupId>com.sun.mail</groupId>
15N/A <artifactId>dsn</artifactId>
15N/A </dependency>
459N/A <dependency>
459N/A <groupId>com.sun.mail</groupId>
459N/A <artifactId>gimap</artifactId>
459N/A </dependency>
15N/A </dependencies>
15N/A</project>