前提・実現したいこと
WSL上にjavaとgradleをインストールをして、javaのプロジェクトを作成して開発をしています。
インストール自体はできたのですが、build(gradle build)を実施するとCould not find tools.jar.になってしまうのでこのエラーを解消(BUILD SUCCESSFULに)したいです。
発生している問題・エラーメッセージ
エラーメッセージ > Task :lib:compileJava FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':lib:compileJava'. > Could not find tools.jar. Please check that /usr/lib/jvm/java-8-openjdk-amd64 contains a valid JDK installation. * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. See https://docs.gradle.org/7.3/userguide/command_line_interface.html#sec:command_line_warnings BUILD FAILED in 3s 1 actionable task: 1 executed
build.gradle
plugins { id 'java' id 'eclipse' id 'application' } sourceCompatibility = '1.8' [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' repositories { jcenter() mavenCentral() } mainClassName = "searchfile.Main" jar { manifest { attributes 'Main-Class': 'searchfile.Main' } } dependencies { testImplementation 'junit:junit:4.13' implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7' implementation 'com.google.guava:guava:29.0-jre' implementation(fileTree(dir: '../../libs', include: ['*.jar'])) compileOnly "org.projectlombok:lombok:1.18.20" annotationProcessor 'org.projectlombok:lombok:1.18.20' }
試したこと
1:qiitaの記事を参考にtools.jarを落として以下のどちらかに配置する。
qiita記事
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib
/usr/lib/jvm/java-8-openjdk-amd64
gradle clean と gradle buildの実施
⇒jdkのバージョンは8なので意味がない???
2:stackoverflowを参考にgradle.propertiesを作成。
stackoverflow
配置場所:"プロジェクト名"/.gradle/gradle.properties
######gradle.properties
org.gradle.warning.mode=all org.gradle.java.home=/usr/lib/jvm/default-java/
gradle clean と gradle buildの実施
⇒配置場所が違う???
###JDKバージョン
- openjdk version "1.8.0_292" - OpenJDK Runtime Environment (build 1.8.0_292-8u292-b10-0ubuntu1~20.04-b10) - OpenJDK 64-Bit Server VM (build 25.292-b10, mixed mode)
###Gradleのバージョン
------------------------------------------------------------ Gradle 7.3 ------------------------------------------------------------ Build time: 2021-11-09 20:40:36 UTC Revision: 96754b8c44399658178a768ac764d727c2addb37 Kotlin: 1.5.31 Groovy: 3.0.9 Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021 JVM: 1.8.0_292 (Private Build 25.292-b10) OS: Linux 5.10.16.3-microsoft-standard-WSL2 amd64
###Ubuntuバージョン
No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS Release: 20.04 Codename: focal
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。