オフライン環境でgradleを使用しSpringBootの実行可能Jar作成方法
Q&A
Closed
解決したいこと
オフライン環境でgradleを使用しSpringBootの実行可能Jarを作成したいですが
エラーが発生しています。
解決方法をご教示ください。
発生している問題・エラー
■コマンドプロンプト
C:/~/~/demo gradlew bootJar --offline --stacktrace
↑上記を実行すると以下エラー発生
FAILURE: Build failed with an excetion.
What went wrong:
Task 'bootJar' not found in root project 'demo'.Exception is:
org.gradle.execution. TaskSelectionException: Task 'bootJar' not found in root project 'demo'.
......
該当するソースコード
build.gradle
plugins {
// id 'org.springframework.boot' version '2.4.2'
// id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}
gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=gradle-6.6.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
バージョン
SpringBoot:2.4.2
gradle:6.6.1
自分で試したこと
オンラインではpluginsで指定していたspringbootをコメントアウトしたので、springbootのpluginをbuild.gradleで明示的にパス指定したくネットで探しているがわからない状況。
0