Build errors

I try to compile WildFire but got 4 errors :

Buildfile: build.xml

init:

Expanding: C:\WildFire-DEV\wildfire_src\build\lib\merge\whack.jar into C:\WildFire-DEV\wildfire_src\work\whack

compile:

Compiling 422 source files to C:\WildFire-DEV\wildfire_src\work\classes

C:\WildFire-DEV\wildfire_src\src\java\org\jivesoftware\database\AbstractConnect ion.java:23: org.jivesoftware.database.AbstractConnection is not abstract and does not override abstract method createStruct(java.lang.String,java.lang.Object[]) in java.sql.Connection

public class AbstractConnection implements Connection {

^

C:\WildFire-DEV\wildfire_src\src\java\org\jivesoftware\database\ProfiledConnect ion.java:631: org.jivesoftware.database.ProfiledConnection.TimedStatement is not abstract and does not override abstract method isPoolable() in java.sql.Statement

class TimedStatement extends StatementWrapper {

^

C:\WildFire-DEV\wildfire_src\src\java\org\jivesoftware\database\ProfiledConnect ion.java:719: org.jivesoftware.database.ProfiledConnection.TimedPreparedStatement is not abstract and does not override abstract method isPoolable() in java.sql.Statement

class TimedPreparedStatement extends PreparedStatementWrapper {

^

C:\WildFire-DEV\wildfire_src\src\java\org\jivesoftware\database\ProfiledConnect ion.java:924: org.jivesoftware.database.ProfiledConnection.TimedCallableStatement is not abstract and does not override abstract method isPoolable() in java.sql.Statement

class TimedCallableStatement extends CallableStatementWrapper {

^

Note: Some input files use or override a deprecated API.

Note: Recompile with -Xlint:deprecation for details.

Note: Some input files use unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.

4 errors

I’'m using JDK 1.5.0

?:>java -version

java version “1.5.0_01”

Java™ 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)

Java HotSpot™ Client VM (build 1.5.0_01-b08, mixed mode, sharing)

Prompt that mean these errors.

Is your JAVA_HOME variable pointing to JDK 1.5 though? I had Java 1.6 installed and I was getting those errors. So I installed Java 1.5 and pointed JAVA_HOME to it and no more complile errors.