basho-labs / riak-data-migrator

Riak logical export and data migration tool (using Java client)
15 stars 6 forks source link

Should specify source and target versions in pom.xml #10

Closed pallinger closed 10 years ago

pallinger commented 10 years ago

Maven tries to build using source = 1.3 by default (at least on debian wheezy with openjdk-6), and fails. If I insert the code below into the pom.xml, it builds.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <configuration>
    <source>1.5</source>
    <target>1.5</target>
  </configuration>
</plugin>
randysecrist commented 10 years ago

This is a duplicate to #13, and has been resolved. 1.6 is now the required minimum.