04-25 01:19
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- BindingAdapter
- Andorid
- Data Binding
- 달러예금
- 청약
- Android
- audio record
- 사전청약
- ChatGPT
- ios
- RETROFIT
- kotlin
- 고금리
- 예금
- ndkVersion
- JetPack
- CHAT GPT
- KB
- EditText
- 3rd framework
- MG더뱅킹정기예금
- Mac
- java
- gradle
- arm-linux-androideabi
- 새마을금고
- Android Studio
- Swift
- ndk r24
- 용산 호반써밋 에이디션
Archives
- Today
- Total
pear
[java] runable fat jar 만들기(johnrengelman/shadow) 본문
Setting
Gradle 6.8
Java 11
Gradle task -> jar
plugins {
// Apply the java-library plugin for API and implementation separation.
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0' // 추가한 코드
}
jar {
enabled = false
finalizedBy shadowJar // 추가한 코드
manifest {
attributes 'Main-Class': 'name.Main'
}
}
Version
Gradle | Shadow |
5.x | 5.2.0 - 6.0.0 |
6.x | 5.2.0 - 6.1.0 |
7.x | 7.0.0+ |
8.x | 8.0.0+ |
reference
https://github.com/johnrengelman/shadow
GitHub - johnrengelman/shadow: Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applicati
Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries. Gradle version of Maven's Shade plugin. - GitHub - johnrengelman/shadow: Grad...
github.com
'dev > java' 카테고리의 다른 글
[java][sprintboot] Sprint Boot Rest API not found error (0) | 2023.12.12 |
---|---|
gradle repositories add maven (0) | 2023.04.06 |
[eclipse] SSL debug LOG (0) | 2023.03.29 |
[JAVA] Mac eclipse gradle version setting (0) | 2022.11.11 |
[JAVA] debug option (0) | 2022.08.26 |