Skip to content

Commit

Permalink
Updated build.gradle to fix build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shakes63 committed Mar 3, 2023
1 parent d81f566 commit 5d4e718
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ plugins {

group = 'com.mediajitters'
version = '0.0.1-SNAPSHOT'

sourceCompatibility = '19'
targetCompatibility = '19'

repositories {
mavenCentral()
Expand All @@ -30,3 +32,15 @@ dependencyManagement {
tasks.named('test') {
useJUnitPlatform()
}

jar {
manifest {
attributes 'Main-Class': 'HttpToMidi'
}
from {
configurations.compile.collect {
it.isDirectory()? it: zipTree(it)
}
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}

0 comments on commit 5d4e718

Please sign in to comment.