일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Slack
- pyinstaller
- mime type
- RecursionError: maximum recursion depth exceeded while calling a Python object
- stock trading
- Daishin Securities
- Stock
- Auto Login
- header
- python
- KOSDAQ
- handleMethodsArgumentNotValid
- mongodb
- request param
- URI
- Web Crawler
- creon login
- Rest
- WebServer
- AWS
- API
- Version Control
- AESCipher
- automated system
- Creon
- spec
- Instance
- EC2
- The Internet
- ExceptionHandler
- Today
- Total
목록Build Automation/Gradle (6)
Change the Better World
1. Change spring boot server port in application.properties or application.yml file - application.properties server.port=8081 - application.yml server port=8081 2. Change it at command line argument - example java -Dserver.port=8081 -jar ****.jar 3. at intellij - example Run/Debu Configurations -> VM options : in VM option, type "-Dserver.port=8081" 4. using gradle bootRun - example "gradle boot..
1. Go to the root of the application where "build.gradle" is available. 2. Run execute the below command "gradle bootRun"
gradle clean clean - Deletes the build directory. gradle build build - Assembles and tests this project. gradle assemble assemble is to combine all tasks to produce a distribution or artifact into a single task it is similar to Maven's package.
what is the problem? the permission of the folder of gradle is denied cd: permission denied: gradleso this folder has the permission to access chmod 755 gradleaften then, ./gradlew clean Downloading https://services.gradle.org/distributions/gradle-7.5.1-bin.zip ...........10%............20%...........30%............40%...........50%............60%...........70%............80%...........90%........
You can install the Gradle build tool on Linux, macOS, or Windows. Prerequisite is JDK which is Java Development Kit version 8 or higer than to run To check, run java -version like below > java -version java version "1.8.0_151" Java(TM) SE Runtime Environment (build 1.8.0_151-b12) Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)Gradle uses whatever JDK it finds in your path. Alte..
Gradle is an open-source build automation tool focused on flexibility and performance. Gradle build scripts are written using a Groovy or Kotlin DSL. Highly customizable — Gradle is modeled in a way that is customizable and extensible in the most fundamental ways. Fast — Gradle completes tasks quickly by reusing outputs from previous executions, processing only inputs that changed, and executing..