You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2011/03/25 23:06:15 UTC

svn commit: r1085579 - in /servicemix/smx4/nmr/trunk: bundle/pom.xml nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java pom.xml

Author: gertv
Date: Fri Mar 25 22:06:14 2011
New Revision: 1085579

URL: http://svn.apache.org/viewvc?rev=1085579&view=rev
Log:
Fix build and remove a few Maven 3 warnings

Modified:
    servicemix/smx4/nmr/trunk/bundle/pom.xml
    servicemix/smx4/nmr/trunk/nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java
    servicemix/smx4/nmr/trunk/pom.xml

Modified: servicemix/smx4/nmr/trunk/bundle/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/bundle/pom.xml?rev=1085579&r1=1085578&r2=1085579&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/bundle/pom.xml (original)
+++ servicemix/smx4/nmr/trunk/bundle/pom.xml Fri Mar 25 22:06:14 2011
@@ -99,6 +99,7 @@
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-shade-plugin</artifactId>
+              <version>1.4</version>
               <executions>
                   <execution>
                       <phase>package</phase>

Modified: servicemix/smx4/nmr/trunk/nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java?rev=1085579&r1=1085578&r2=1085579&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java (original)
+++ servicemix/smx4/nmr/trunk/nmr/core/src/test/java/org/apache/servicemix/nmr/core/EndpointRegistryImplTest.java Fri Mar 25 22:06:14 2011
@@ -192,7 +192,7 @@ public class EndpointRegistryImplTest ex
         ExecutorConfig config = (ExecutorConfig) field.get(endpoint.channel.getExecutor());
 
         // ensure that we have the core pool size value we requested
-        assertEquals(12, config.getCorePoolSize());
+        assertEquals(new Integer(12), config.getCorePoolSize());
 
         // let's make sure the endpoint is still available under the intended name
         InternalReference reference =

Modified: servicemix/smx4/nmr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/pom.xml?rev=1085579&r1=1085578&r2=1085579&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/pom.xml (original)
+++ servicemix/smx4/nmr/trunk/pom.xml Fri Mar 25 22:06:14 2011
@@ -522,10 +522,17 @@
             <artifactId>org.eclipse.osgi</artifactId>
             <version>${equinox.version}</version>
         </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>${slf4j.version}</version>
+        </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>${slf4j.version}</version>
+            <scope>test</scope>
         </dependency>
     </dependencies>
   </dependencyManagement>
@@ -709,14 +716,17 @@
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-javadoc-plugin</artifactId>
+              <version>2.7</version>
           </plugin>
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-jxr-plugin</artifactId>
+              <version>2.2</version>
           </plugin>
           <plugin>
               <groupId>org.codehaus.mojo</groupId>
               <artifactId>cobertura-maven-plugin</artifactId>
+              <version>2.4</version>
           </plugin>
       </plugins>
   </reporting>