Skip to content

Commit

Permalink
Add versioning info
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammy1Am committed May 4, 2018
1 parent 5e1c413 commit a99b8a4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Java/MoppyControlGUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ apply plugin: 'java'
apply plugin: 'application'

mainClassName = 'com.moppy.control.MoppyControlGUI'
version = '2.0.0'

jar {
manifest {
attributes 'Main-Class': mainClassName,
'Implementation-Version': version
}
}

sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
Expand Down
8 changes: 8 additions & 0 deletions Java/MoppyLib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
apply plugin: 'java'

version = '2.0.0'

jar {
manifest {
attributes 'Implementation-Version': version
}
}

sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

Expand Down

0 comments on commit a99b8a4

Please sign in to comment.