Author: bsnyder
Date: Wed Feb 21 14:19:54 2007
New Revision: 510268

URL: http://svn.apache.org/viewvc?view=rev&rev=510268
Log:
Fixed broken build in servicemix-jms by adding 1.5 requirement to the POM.

Modified:
    
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-jms/pom.xml

Modified: 
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-jms/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-jms/pom.xml?view=diff&rev=510268&r1=510267&r2=510268
==============================================================================
--- 
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-jms/pom.xml 
(original)
+++ 
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-jms/pom.xml 
Wed Feb 21 14:19:54 2007
@@ -150,13 +150,21 @@
           </execution>
         </executions>
       </plugin>
-         <plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <excludes>
             <exclude>**/JmsSpringJcaTest.*</exclude>
-             </excludes>
+          </excludes>
         </configuration>
       </plugin>
     </plugins>


Reply via email to