Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

.gradle/
build/
local.properties
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# dmtools
Delivery Management Tools

# Build jar
gradle shadowJar
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}

apply plugin: 'maven-publish'
Expand Down Expand Up @@ -89,4 +90,13 @@ publishing {
}
}
}
}

shadowJar {
archiveBaseName.set('lib')
archiveClassifier.set('')
archiveVersion.set('')
manifest {
attributes 'Main-Class': 'com.github.istin.dmtools.job.JobRunner'
}
}