Please see inline comments bellow:
On Sep 23, 12:35 am, VizGuy <
viz...@google.com> wrote:
> Hi,
> 1. The change in the code to make it compile on 1.5 is very simple. It
> should take you a few minutes to change the code, and build it.
Yes it's very simple. Here is what I did:
svn co
http://google-visualization-java.googlecode.com/svn/tags/release-1.0.2
gv-1-0-2
edit gv-1-0-2/pom.xml
From:
<configuration>
<source>1.6</source>
<target>1.5</target>
</configuration>
To:
<configuration>
<source>1.6</source>
<target>1.5</target>
</configuration>
Then edited the source in eclipse find/replace "@Override" --> ""
Note: To easily import the source into eclispe do a "mvn
eclipse:eclipse" in gv-1-0-2.
Then I built it:
cd gv-1-0-2
mvn clean install
... This places the the newly built JAR into your maven repository.
> 2. In the future releases, we will try to provide jars for both 1.5 and 1.6
> (but with only one version of the source code, for 1.6). This means that if
> you want to modify the code for your use with 1.5, you will have to do the
> extra 2 minutes documented changes (but again, its really two minutes).
That would be great. Thank you.
>
> Regards,
> VizGuy