Solr 4.9.0 was compiled for java7. The latest version that I found compiled for java6 is 4.7.2. You can see this in pom.xml for the project (the corresponding part is reproduced below).
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
source
share