Ant needs tools.jar and unable to find it

后端 未结 10 1937
温柔的废话
温柔的废话 2021-01-30 16:27

I am putting together a dev environment for a Java program and after the first try of my Ant build scripts I got this error:

Unable to locate tools.jar. Expected         


        
10条回答
  •  太阳男子
    2021-01-30 17:16

    It seems like you can have Java installed in /usr/lib/jvm/java-6-openjdk but only have the JRE, not the JDK. This fixed it for me:

    sudo apt-get install openjdk-6-jdk

提交回复
热议问题