Skip to content

Commit

Permalink
only want to build the executable jar file
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcz committed Dec 15, 2023
1 parent aa14796 commit 03f9fb5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
plugins {
id 'application'
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

repositories {
mavenCentral()
}

defaultTasks 'clean', 'test', 'build', 'shadowJar'
defaultTasks 'clean', 'test', 'shadowJar'

mainClassName = 'com.tomczarniecki.s3.Main'
jar {
manifest {
attributes 'Main-Class': 'com.tomczarniecki.s3.Main'
}
}

configurations.all {
exclude(group: 'commons-logging')
}

dependencies {
implementation 'joda-time:joda-time:2.1'
implementation 'org.slf4j:slf4j-simple:1.6.6'
implementation 'org.slf4j:jcl-over-slf4j:1.6.6'

implementation 'commons-io:commons-io:2.4'
implementation 'commons-cli:commons-cli:1.2'
implementation 'commons-lang:commons-lang:2.6'

implementation 'joda-time:joda-time:2.1'
implementation 'com.formdev:flatlaf:1.1.1'

implementation 'com.jgoodies:jgoodies-forms:1.9.0'

implementation 'com.amazonaws:aws-java-sdk-s3:1.11.1030'

testImplementation 'junit:junit:4.13.2'
Expand Down

0 comments on commit 03f9fb5

Please sign in to comment.