Skip to content

Commit

Permalink
Update gradle build configuration output jar
Browse files Browse the repository at this point in the history
  • Loading branch information
dukke committed Apr 5, 2018
1 parent accfce9 commit 77f210a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ lib/
# Gradle
.gradle/
.nb-gradle/

# Gradle output dir
build/
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@ plugins {
id 'java-library'
}

version = '1.0.0'

jar {
manifest {
attributes( 'Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}

0 comments on commit 77f210a

Please sign in to comment.