Build/Gradle
[Gradle] Linux gradlew 빌드하기
2021. 3. 2. 01:20반응형
1. gradle wrapper로 built
$ gradle wrapper --gradle-version 2.13
// gradle wrapper --gradle-version [your gradle version]
Gradle wrapper needs to be built. Try running gradle wrapper --gradle-version 2.13 Remember to change 2.13 to your gradle version number. After running this command, you should see new scripts added to your project folder. You should be able to run the wrapper with ./gradlew build to build your code. Please refer to this guid for more information https://spring.io/guides/gs/gradle/.
2. gradlew build
$ ./gradlew build
참고
- gradlew command not found?
stackoverflow.com/questions/41700798/gradlew-command-not-found
반응형
'Build > Gradle' 카테고리의 다른 글
[Gradle] Gradle 문법 기초 (#Main9) (0) | 2022.08.01 |
---|---|
gradle task이해 (수정중) (0) | 2022.04.27 |
[Gradle] Linux/Ubuntu에 Gradle 설치 (0) | 2021.03.01 |
[Gradle] gradlew 명령어 오류 ERROR: JAVA_HOME is set to an invalid directory: (0) | 2021.03.01 |
[Gradle/Intellij] Java 버전 안 맞는 오류 체크리스트 with SpringBoot (0) | 2021.02.17 |