Cross Reference: pom.xml
xref
: /
javamail
/
mailapi
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
pom.xml revision 166
132
N/A
<?
xml
version=
"1.0"
encoding=
"iso-8859-1"
?>
132
N/A
<!--
132
N/A
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
132
N/A
132
N/A
Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
132
N/A
132
N/A
The contents of this file are subject to the terms of either the GNU
132
N/A
General Public License Version 2 only ("GPL") or the Common Development
132
N/A
and Distribution License("CDDL") (collectively, the "License"). You
132
N/A
may not use this file except in compliance with the License. You can obtain
132
N/A
a copy of the License at
https://glassfish.dev.java.net/public/CDDL+GPL.html
132
N/A
or
glassfish
/
bootstrap
/
legal
/
LICENSE.txt
. See the License for the specific
132
N/A
language governing permissions and limitations under the License.
132
N/A
132
N/A
When distributing the software, include this License Header Notice in each
132
N/A
file and include the License file at
glassfish
/
bootstrap
/
legal
/
LICENSE.txt
.
132
N/A
Sun designates this particular file as subject to the "Classpath" exception
132
N/A
as provided by Sun in the GPL Version 2 section of the License file that
132
N/A
accompanied this code. If applicable, add the following below the License
132
N/A
Header, with the fields enclosed by brackets [] replaced by your own
132
N/A
identifying information: "Portions Copyrighted [year]
132
N/A
[name of copyright owner]"
132
N/A
132
N/A
Contributor(s):
215
N/A
132
N/A
If you wish your version of this file to be governed by only the CDDL or
132
N/A
only the GPL Version 2, indicate your decision by adding "[Contributor]
132
N/A
elects to include this software in this distribution under the [CDDL or GPL
132
N/A
Version 2] license." If you don't indicate a single choice of license, a
132
N/A
recipient has the option to distribute your version of this file under
132
N/A
either the CDDL, the GPL Version 2 or to extend the choice of license to
132
N/A
its licensees as provided above. However, if you add GPL Version 2 code
132
N/A
and therefore, elected the GPL Version 2 license, then the option applies
132
N/A
only if the new code is made subject to such option by the copyright
132
N/A
holder.
132
N/A
-->
132
N/A
132
N/A
<
project
xmlns=
"
http://maven.apache.org/POM/4.0.0
"
132
N/A
xmlns
:
xsi=
"
http://www.w3.org/2001/XMLSchema-instance
"
132
N/A
xsi
:
schemaLocation=
"
http://maven.apache.org/POM/4.0.0
132
N/A
http://maven.apache.org/maven-v4_0_0.xsd
"
>
132
N/A
<
parent
>
132
N/A
<
groupId
>
com.sun.mail
</
groupId
>
132
N/A
<
artifactId
>all</
artifactId
>
132
N/A
<
version
>1.4.3-SNAPSHOT</
version
>
132
N/A
</
parent
>
132
N/A
<
modelVersion
>4.0.0</
modelVersion
>
132
N/A
<
groupId
>
javax.mail
</
groupId
>
132
N/A
<
artifactId
>mailapi</
artifactId
>
132
N/A
<
packaging
>jar</
packaging
>
132
N/A
<
name
>JavaMail API jar</
name
>
132
N/A
132
N/A
<
properties
>
132
N/A
<
mail.packages.export
>
132
N/A
javax.mail.
*; version=${
mail.spec.version
},
132
N/A
com.sun.mail.util
; version=${
mail.version
},
132
N/A
com.sun.mail.handlers
; version=${
mail.version
}
132
N/A
</
mail.packages.export
>
132
N/A
</
properties
>
132
N/A
132
N/A
<
build
>
132
N/A
<
plugins
>
132
N/A
<
plugin
>
132
N/A
<
artifactId
>maven-dependency-plugin</
artifactId
>
132
N/A
<
executions
>
132
N/A
<
execution
>
132
N/A
<
id
>unpack</
id
>
132
N/A
<
phase
>process-sources</
phase
>
132
N/A
<
goals
>
132
N/A
<
goal
>unpack</
goal
>
132
N/A
</
goals
>
132
N/A
</
execution
>
132
N/A
</
executions
>
132
N/A
<
configuration
>
132
N/A
<
artifactItems
>
132
N/A
<
artifactItem
>
132
N/A
<
groupId
>
javax.mail
</
groupId
>
132
N/A
<
artifactId
>mail</
artifactId
>
132
N/A
<
version
>${
mail.version
}</
version
>
132
N/A
</
artifactItem
>
132
N/A
</
artifactItems
>
132
N/A
<
outputDirectory
>
132
N/A
${
project.build.outputDirectory
}
132
N/A
</
outputDirectory
>
132
N/A
<
includes
>
132
N/A
javax/**,
132
N/A
com
/
sun
/
mail
/
util
/**,
132
N/A
com
/
sun
/
mail
/
handlers
/**,
132
N/A
META-INF/*
219
N/A
</
includes
>
1021
N/A
<
excludes
>
220
N/A
META-INF
/
javamail.default
.*
341
N/A
</
excludes
>
341
N/A
</
configuration
>
379
N/A
</
plugin
>
411
N/A
<
plugin
>
487
N/A
<
artifactId
>maven-jar-plugin</
artifactId
>
706
N/A
<
configuration
>
706
N/A
<
finalName
>${
project.artifactId
}</
finalName
>
706
N/A
<
archive
>
741
N/A
<
manifestFile
>
741
N/A
${
project.build.outputDirectory
}/
META-INF
/
MANIFEST.MF
706
N/A
</
manifestFile
>
706
N/A
</
archive
>
736
N/A
</
configuration
>
487
N/A
</
plugin
>
704
N/A
</
plugins
>
487
N/A
</
build
>
704
N/A
</
project
>
704
N/A