Reputation: 95
I am trying to install hybris, but while installing I face a problem in executing ant clean command.
I am using the latest version of java which should work. I have also used setantenv.bat in the right path.
here is the stack trace :
Apache Ant(TM) version 1.9.1 compiled on May 15 2013
C:\work\trail\hybris\bin\platform>**ant clean**
Java HotSpot(TM) Client VM warning: ignoring option MaxPermSize=128M; support
s removed in 8.0
Buildfile: C:\work\trail\hybris\bin\platform\build.xml
[echo] C:\work\trail\hybris\bin\platform/tomcat/bin
**BUILD FAILED**
C:\work\trail\hybris\bin\platform\build.xml:20: The following error occurred w
le executing this line:
C:\work\trail\hybris\bin\platform\resources\ant\antmacros.xml:73: The followin
error occurred while executing this line:
C:\work\trail\hybris\bin\platform\resources\ant\util.xml:234: -
**** **WRONG JAVA VERSION** ****
Environment check failed: You are using a not supported version of Java.
Please make sure you are using Java version 1.7 or later.
Your current Java version is: 1.8.0_40
TIP: If you are using eclipse you can configure a different JVM under
Preferences->Java->Installed JREs.
Total time: 1 second
Upvotes: 1
Views: 3798
Reputation: 597
try this instead, adding java version in util.xml under platfrom folder. worked for me!
Upvotes: 0
Reputation: 79
In eclipse go to platform - build.xml - right click on it - go to run as - external tools configuration - go to jre tab - add in separate jre the required jre version - add the build.xml file again to ant and run it
Upvotes: 0
Reputation: 522539
Since you were able to get Hybris working with JDK 7, it appears that Java JDK version 1.8.0_40 does not have backwards compatibility/support for Hybris 5.2.0.6. You may want to open a bug with Hybris if you are feeling entrepid.
Upvotes: 1