I am trying to create a fat jar using gradle and I am using following dependency
implementation platform('com.amazonaws:aws-java-sdk-bom:1.11.1000')
implementation 'com.amazonaws:aws-java-sdk-core'
implementation("software.amazon.msk:aws-msk-iam-auth:1.1.1")
implementation("org.apache.kafka:kafka-clients:3.0.0")
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
But I am getting this error
Entry META-INF/LICENSE.txt is a duplicate but no duplicate handling strategy has been set
Any Suggestions?