Cross Reference: pom.xml
xref
: /
javamail
/
oldmail
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
305
N/A
<?
xml
version=
"1.0"
encoding=
"iso-8859-1"
?>
305
N/A
<!--
305
N/A
305
N/A
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
305
N/A
811
N/A
Copyright (c) 1997-2015 Oracle
and
/
or
its affiliates. All rights reserved.
305
N/A
305
N/A
The contents of this file are subject to the terms of either the GNU
305
N/A
General Public License Version 2 only ("GPL") or the Common Development
305
N/A
and Distribution License("CDDL") (collectively, the "License"). You
305
N/A
may not use this file except in compliance with the License. You can
305
N/A
obtain a copy of the License at
305
N/A
https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
305
N/A
or
packager
/
legal
/
LICENSE.txt
. See the License for the specific
305
N/A
language governing permissions and limitations under the License.
305
N/A
305
N/A
When distributing the software, include this License Header Notice in each
305
N/A
file and include the License file at
packager
/
legal
/
LICENSE.txt
.
305
N/A
305
N/A
GPL Classpath Exception:
305
N/A
Oracle designates this particular file as subject to the "Classpath"
305
N/A
exception as provided by Oracle in the GPL Version 2 section of the License
305
N/A
file that accompanied this code.
305
N/A
305
N/A
Modifications:
305
N/A
If applicable, add the following below the License Header, with the fields
305
N/A
enclosed by brackets [] replaced by your own identifying information:
305
N/A
"Portions Copyright [year] [name of copyright owner]"
305
N/A
305
N/A
Contributor(s):
305
N/A
If you wish your version of this file to be governed by only the CDDL or
305
N/A
only the GPL Version 2, indicate your decision by adding "[Contributor]
305
N/A
elects to include this software in this distribution under the [CDDL or GPL
305
N/A
Version 2] license." If you don't indicate a single choice of license, a
305
N/A
recipient has the option to distribute your version of this file under
305
N/A
either the CDDL, the GPL Version 2 or to extend the choice of license to
305
N/A
its licensees as provided above. However, if you add GPL Version 2 code
305
N/A
and therefore, elected the GPL Version 2 license, then the option applies
305
N/A
only if the new code is made subject to such option by the copyright
305
N/A
holder.
305
N/A
305
N/A
-->
305
N/A
305
N/A
<!--
305
N/A
This project creates a jar file using the old name (
mail.jar
),
305
N/A
the old groupId:artifactId, etc.
305
N/A
-->
305
N/A
305
N/A
<
project
xmlns=
"
http://maven.apache.org/POM/4.0.0
"
305
N/A
xmlns
:
xsi=
"
http://www.w3.org/2001/XMLSchema-instance
"
305
N/A
xsi
:
schemaLocation=
"
http://maven.apache.org/POM/4.0.0
305
N/A
http://maven.apache.org/maven-v4_0_0.xsd
"
>
305
N/A
<
parent
>
305
N/A
<
groupId
>
com.sun.mail
</
groupId
>
305
N/A
<
artifactId
>all</
artifactId
>
813
N/A
<
version
>1.5.6-SNAPSHOT</
version
>
305
N/A
</
parent
>
305
N/A
<
modelVersion
>4.0.0</
modelVersion
>
305
N/A
<
groupId
>
javax.mail
</
groupId
>
305
N/A
<
artifactId
>mail</
artifactId
>
305
N/A
<
packaging
>jar</
packaging
>
305
N/A
<
name
>JavaMail API (compat)</
name
>
305
N/A
305
N/A
<
properties
>
305
N/A
<!-- override the OSGi Bundle-SymbolicName -->
305
N/A
<
mail.bundle.symbolicName
>
305
N/A
javax.mail
305
N/A
</
mail.bundle.symbolicName
>
305
N/A
<!-- rest copied from
mail
/
pom.xml
-->
305
N/A
<
mail.extensionName
>
305
N/A
javax.mail
305
N/A
</
mail.extensionName
>
305
N/A
<
mail.specificationTitle
>
305
N/A
JavaMail(TM) API Design Specification
305
N/A
</
mail.specificationTitle
>
305
N/A
<
mail.implementationTitle
>
305
N/A
javax.mail
305
N/A
</
mail.implementationTitle
>
305
N/A
<
mail.packages.export
>
305
N/A
javax.mail.
*; version=${
mail.spec.version
},
305
N/A
com.sun.mail.imap
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.imap.protocol
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.iap
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.pop3
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.smtp
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.util
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.util.logging
; version=${
mail.osgiversion
},
305
N/A
com.sun.mail.handlers
; version=${
mail.osgiversion
}
305
N/A
</
mail.packages.export
>
305
N/A
<
mail.probeFile
>
305
N/A
META-INF
/
gfprobe-provider.xml
305
N/A
</
mail.probeFile
>
305
N/A
</
properties
>
305
N/A
305
N/A
<
build
>
305
N/A
<
plugins
>
305
N/A
<
plugin
>
305
N/A
<
artifactId
>maven-dependency-plugin</
artifactId
>
305
N/A
<
executions
>
305
N/A
<
execution
>
371
N/A
<!-- download the binaries -->
371
N/A
<
id
>get-binaries</
id
>
371
N/A
<
phase
>process-sources</
phase
>
371
N/A
<
goals
>
371
N/A
<
goal
>unpack</
goal
>
371
N/A
</
goals
>
371
N/A
</
execution
>
371
N/A
<
execution
>
371
N/A
<!-- download the sources -->
371
N/A
<
id
>get-sources</
id
>
305
N/A
<
phase
>process-sources</
phase
>
305
N/A
<
goals
>
305
N/A
<
goal
>unpack</
goal
>
305
N/A
</
goals
>
371
N/A
<
configuration
>
371
N/A
<
artifactItems
>
371
N/A
<
artifactItem
>
371
N/A
<
groupId
>
com.sun.mail
</
groupId
>
371
N/A
<
artifactId
>
javax.mail
</
artifactId
>
371
N/A
<
version
>${
mail.version
}</
version
>
371
N/A
<
classifier
>sources</
classifier
>
371
N/A
<
outputDirectory
>
371
N/A
${
project.build.directory
}/sources
371
N/A
</
outputDirectory
>
371
N/A
</
artifactItem
>
371
N/A
</
artifactItems
>
371
N/A
</
configuration
>
305
N/A
</
execution
>
305
N/A
</
executions
>
305
N/A
<
configuration
>
305
N/A
<
artifactItems
>
305
N/A
<
artifactItem
>
305
N/A
<
groupId
>
com.sun.mail
</
groupId
>
305
N/A
<
artifactId
>
javax.mail
</
artifactId
>
305
N/A
<
version
>${
mail.version
}</
version
>
305
N/A
</
artifactItem
>
305
N/A
</
artifactItems
>
305
N/A
<
outputDirectory
>
305
N/A
${
project.build.outputDirectory
}
305
N/A
</
outputDirectory
>
305
N/A
<
excludes
>
305
N/A
META-INF
/
maven
/**
305
N/A
</
excludes
>
305
N/A
</
configuration
>
305
N/A
</
plugin
>
305
N/A
<
plugin
>
305
N/A
<
artifactId
>maven-jar-plugin</
artifactId
>
305
N/A
<
configuration
>
305
N/A
<
finalName
>${
project.artifactId
}</
finalName
>
305
N/A
<
archive
>
305
N/A
<
manifestFile
>
305
N/A
${
project.build.outputDirectory
}/
META-INF
/
MANIFEST.MF
305
N/A
</
manifestFile
>
305
N/A
</
archive
>
305
N/A
</
configuration
>
305
N/A
</
plugin
>
305
N/A
</
plugins
>
305
N/A
</
build
>
305
N/A
</
project
>