Hi!

It seems like the version configured in "/commons-main/pom.xml" is wrong. Documentation says that Java 1.6 need to be used, but the compiler plugin is set to 1.5. This confuses Maven integration in Eclipse.

So I guess this patch should be added:

$ svn diff
Index: pom.xml
===================================================================
--- pom.xml     (revision 1147)
+++ pom.xml     (working copy)
@@ -72,8 +72,8 @@
                 <inherited>true</inherited>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
+                    <source>1.6</source>
+                    <target>1.6</target>
                     <encoding>UTF-8</encoding>
                 </configuration>
             </plugin>

Thanks!!

Endre Midtgård Meckelborg
Seniorutvikler  ⁄  Scrum Master
FINN tjenester og bedrifter
Tlf: +47 93 01 45 04
[email protected]


Mulighetenes marked
Grensen 5-7
Pb. 747 Sentrum
0106 Oslo
Telefon: +47 22 86 44 10
Telefaks: +47 22 42 96 97
http://www.finn.no

_______________________________________________
Kernel-development mailing list
[email protected]
http://sesat.no/mailman/listinfo/kernel-development

Reply via email to