Cross Reference: pom.xml
xref
: /
javamail
/
mailapi
/
pom.xml
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
pom.xml revision 5
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
>
5
N/A
<
groupId
>
javax.mail
</
groupId
>
5
N/A
<
artifactId
>all</
artifactId
>
5
N/A
<
version
>${
mail.version
}</
version
>
5
N/A
</
parent
>
5
N/A
<
modelVersion
>4.0.0</
modelVersion
>
5
N/A
<
groupId
>
javax.mail
</
groupId
>
5
N/A
<
artifactId
>mailapi</
artifactId
>
5
N/A
<
packaging
>jar</
packaging
>
5
N/A
<
version
>${
mail.version
}</
version
>
5
N/A
<
name
>JavaMail API jar</
name
>
5
N/A
<
description
>JavaMail API jar</
description
>
5
N/A
<
url
>
http://java.sun.com/projects/javamail
</
url
>
5
N/A
5
N/A
<
build
>
5
N/A
<
plugins
>
5
N/A
<
plugin
>
5
N/A
<
artifactId
>maven-dependency-plugin</
artifactId
>
5
N/A
<
version
>2.0-alpha-5-SNAPSHOT</
version
>
5
N/A
<
executions
>
5
N/A
<
execution
>
5
N/A
<
id
>unpack</
id
>
5
N/A
<
phase
>process-sources</
phase
>
5
N/A
<
goals
>
5
N/A
<
goal
>unpack</
goal
>
5
N/A
</
goals
>
5
N/A
</
execution
>
5
N/A
</
executions
>
5
N/A
<
configuration
>
5
N/A
<
artifactItems
>
5
N/A
<
artifactItem
>
5
N/A
<
groupId
>
javax.mail
</
groupId
>
5
N/A
<
artifactId
>mail</
artifactId
>
5
N/A
<
version
>${
mail.version
}</
version
>
5
N/A
</
artifactItem
>
5
N/A
</
artifactItems
>
5
N/A
<
outputDirectory
>
5
N/A
${
project.build.outputDirectory
}
5
N/A
</
outputDirectory
>
5
N/A
<
includes
>
5
N/A
javax/**,
5
N/A
com
/
sun
/
mail
/
util
/**,
5
N/A
com
/
sun
/
mail
/
handlers
/**,
5
N/A
META-INF/*
5
N/A
</
includes
>
5
N/A
<
excludes
>
5
N/A
META-INF
/
javamail.default
.*
5
N/A
</
excludes
>
5
N/A
</
configuration
>
5
N/A
</
plugin
>
5
N/A
<
plugin
>
5
N/A
<
artifactId
>maven-jar-plugin</
artifactId
>
5
N/A
<
configuration
>
5
N/A
<
archive
>
5
N/A
<
manifestFile
>
5
N/A
${
project.build.outputDirectory
}/
META-INF
/
MANIFEST.MF
5
N/A
</
manifestFile
>
5
N/A
</
archive
>
5
N/A
</
configuration
>
5
N/A
</
plugin
>
5
N/A
</
plugins
>
5
N/A
</
build
>
5
N/A
5
N/A
<
pluginRepositories
>
5
N/A
<
pluginRepository
>
5
N/A
<
id
>Maven Snapshots</
id
>
5
N/A
<
url
>
http://people.apache.org/repo/m2-snapshot-repository
</
url
>
5
N/A
<
snapshots
>
5
N/A
<
enabled
>true</
enabled
>
5
N/A
</
snapshots
>
5
N/A
<
releases
>
5
N/A
<
enabled
>false</
enabled
>
5
N/A
</
releases
>
5
N/A
</
pluginRepository
>
5
N/A
</
pluginRepositories
>
5
N/A
5
N/A
<
repositories
>
5
N/A
<
repository
>
5
N/A
<
id
>Maven Snapshots</
id
>
5
N/A
<
url
>
http://people.apache.org/repo/m2-snapshot-repository
</
url
>
5
N/A
<
snapshots
>
5
N/A
<
enabled
>true</
enabled
>
5
N/A
</
snapshots
>
5
N/A
<
releases
>
5
N/A
<
enabled
>false</
enabled
>
5
N/A
</
releases
>
5
N/A
</
repository
>
5
N/A
</
repositories
>
5
N/A
</
project
>