Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- bigquery
- Gradle
- Glide
- test
- firebase
- coroutines
- quick-start
- 스트리밍
- null safety
- Exception
- vuepress
- log
- ethereum
- C
- LAYER_TYPE_SOFTWARE
- hardwareacceleration
- Hyperledger
- web3js
- convert
- 안드로이드
- 컴파일
- 다윈
- kotlin
- Android
- fabric-sdk-java
- error
- Realm
- dataginding
- fabic
- porterduff
Archives
- Today
- Total
목록프로그래밍/TIP (1)
날마다 새롭게 또 날마다 새롭게
Gradle jar 빌드하기 전 항상 test 실행하기
Gradle jar 빌드하기 전 test 실행하기 ./gradlew jar 혹은 Intellij IDEA 의 Gradle Tool Window 에서 tasks > build > jar 로 jar 파일을 빌드하기 전 항상 test task 를 실행하도록 설정하는 방법입니다. 물론 test task 를 실행하고 jar task 를 실행하면 되지만 혹시나... 편하게 jar 만 실행해도 test 실행하는 것을 목표로 합니다. ./gradlew clean test jar 예를 들어, 다음과 같은 설정이 있습니다. build.gradle jar { from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } finalizedBy shado..
프로그래밍/TIP
2021. 1. 5. 18:20