You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ga...@apache.org on 2009/12/30 14:45:42 UTC

svn commit: r894612 - in /incubator/aries/trunk/jmx: jmx-itests/pom.xml pom.xml

Author: gawor
Date: Wed Dec 30 13:45:42 2009
New Revision: 894612

URL: http://svn.apache.org/viewvc?rev=894612&view=rev
Log:
ARIES-97: exclude javax.mail from pax-logging-service to prevent downloading it from java.net repo

Modified:
    incubator/aries/trunk/jmx/jmx-itests/pom.xml
    incubator/aries/trunk/jmx/pom.xml

Modified: incubator/aries/trunk/jmx/jmx-itests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-itests/pom.xml?rev=894612&r1=894611&r2=894612&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/jmx-itests/pom.xml (original)
+++ incubator/aries/trunk/jmx/jmx-itests/pom.xml Wed Dec 30 13:45:42 2009
@@ -102,12 +102,6 @@
             <artifactId>pax-exam-container-default</artifactId>
             <scope>test</scope>
         </dependency>
-        <!--
-            <dependency> <groupId>org.ops4j.pax.logging</groupId>
-            <artifactId>pax-logging-api</artifactId> <version>1.4</version> </dependency>
-            <dependency> <groupId>org.ops4j.pax.logging</groupId>
-            <artifactId>pax-logging-service</artifactId> <version>1.4</version> </dependency>
-        -->
         <dependency>
             <groupId>org.ops4j.pax.url</groupId>
             <artifactId>pax-url-mvn</artifactId>
@@ -129,13 +123,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
 
             <plugin>
                 <groupId>org.ops4j.pax.exam</groupId>

Modified: incubator/aries/trunk/jmx/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/pom.xml?rev=894612&r1=894611&r2=894612&view=diff
==============================================================================
--- incubator/aries/trunk/jmx/pom.xml (original)
+++ incubator/aries/trunk/jmx/pom.xml Wed Dec 30 13:45:42 2009
@@ -119,6 +119,10 @@
                         <groupId>com.sun.jmx</groupId>
                         <artifactId>jmxri</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>javax.mail</groupId>
+                        <artifactId>mail</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
             <dependency>