Cross Reference: pom.xml
xref
: /
javamail
/
webapp
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
52
N/A
<?
xml
version=
"1.0"
encoding=
"iso-8859-1"
?>
52
N/A
<!--
292
N/A
52
N/A
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
52
N/A
811
N/A
Copyright (c) 1997-2015 Oracle
and
/
or
its affiliates. 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
292
N/A
may not use this file except in compliance with the License. You can
292
N/A
obtain a copy of the License at
292
N/A
https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
292
N/A
or
packager
/
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
292
N/A
file and include the License file at
packager
/
legal
/
LICENSE.txt
.
292
N/A
292
N/A
GPL Classpath Exception:
292
N/A
Oracle designates this particular file as subject to the "Classpath"
292
N/A
exception as provided by Oracle in the GPL Version 2 section of the License
292
N/A
file that accompanied this code.
292
N/A
292
N/A
Modifications:
292
N/A
If applicable, add the following below the License Header, with the fields
292
N/A
enclosed by brackets [] replaced by your own identifying information:
292
N/A
"Portions Copyright [year] [name of copyright owner]"
52
N/A
52
N/A
Contributor(s):
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.
292
N/A
52
N/A
-->
52
N/A
5
N/A
<
project
xmlns=
"
http://maven.apache.org/POM/4.0.0
"
5
N/A
xmlns
:
xsi=
"
http://www.w3.org/2001/XMLSchema-instance
"
5
N/A
xsi
:
schemaLocation=
"
http://maven.apache.org/POM/4.0.0
5
N/A
http://maven.apache.org/maven-v4_0_0.xsd
"
>
5
N/A
<
parent
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
5
N/A
<
artifactId
>all</
artifactId
>
813
N/A
<
version
>1.5.6-SNAPSHOT</
version
>
5
N/A
</
parent
>
5
N/A
<
modelVersion
>4.0.0</
modelVersion
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
5
N/A
<
artifactId
>webapp</
artifactId
>
5
N/A
<
packaging
>war</
packaging
>
5
N/A
<
name
>JavaMail API demo webapp</
name
>
5
N/A
5
N/A
<
build
>
5
N/A
<
plugins
>
5
N/A
<
plugin
>
5
N/A
<
artifactId
>maven-war-plugin</
artifactId
>
5
N/A
<
configuration
>
5
N/A
<
warName
>webapp</
warName
>
400
N/A
<
packagingExcludes
>
5
N/A
WEB-INF
/
lib
/
activation
*.jar,
400
N/A
WEB-INF
/
lib
/
javax.mail
*.jar,
5
N/A
WEB-INF
/
lib
/
jsp
*.jar,
5
N/A
WEB-INF
/
lib
/
servlet
*.jar
400
N/A
</
packagingExcludes
>
400
N/A
<
outputFileNameMapping
>
400
N/A
@{artifactId}@.@{extension}@
400
N/A
</
outputFileNameMapping
>
5
N/A
</
configuration
>
5
N/A
</
plugin
>
5
N/A
</
plugins
>
5
N/A
</
build
>
5
N/A
5
N/A
<
dependencies
>
5
N/A
<
dependency
>
15
N/A
<
groupId
>
com.sun.mail
</
groupId
>
5
N/A
<
artifactId
>taglib</
artifactId
>
5
N/A
</
dependency
>
5
N/A
<
dependency
>
5
N/A
<
groupId
>
javax.servlet
</
groupId
>
5
N/A
<
artifactId
>servlet-api</
artifactId
>
5
N/A
</
dependency
>
5
N/A
<
dependency
>
308
N/A
<
groupId
>
com.sun.mail
</
groupId
>
308
N/A
<
artifactId
>
javax.mail
</
artifactId
>
5
N/A
</
dependency
>
5
N/A
</
dependencies
>
5
N/A
</
project
>