Changed dependencies to scope provided so that a downstream user doesn't get the spec and provider jars as transitive dependencies.  These jars are unpacked and nested in the jar created by this module.

git-svn-id: https://svn.apache.org/repos/asf/geronimo/javamail/trunk@586572 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/pom.xml b/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/pom.xml
index aa5e120..cafd59e 100644
--- a/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/pom.xml
+++ b/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/pom.xml
@@ -41,11 +41,13 @@
             <groupId>org.apache.geronimo.javamail</groupId>
             <artifactId>geronimo-javamail_1.4_provider</artifactId>
             <version>${pom.version}</version>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-javamail_1.4_spec</artifactId>
+            <scope>provided</scope>
         </dependency>
 
     </dependencies>
diff --git a/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/src/main/assembly/javamail.xml b/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/src/main/assembly/javamail.xml
index 023e8ca..dc460d4 100644
--- a/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/src/main/assembly/javamail.xml
+++ b/geronimo-javamail_1.4/geronimo-javamail_1.4_mail/src/main/assembly/javamail.xml
@@ -32,7 +32,7 @@
         <dependencySet>
             <outputDirectory>/</outputDirectory>
             <unpack>true</unpack>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <excludes>
                 <exclude>org.apache.geronimo.specs:geronimo-activation_1.1_spec</exclude>
             </excludes>