Skip to content

Commit

Permalink
Update build config and version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fikr4n committed Feb 13, 2017
1 parent 5a4b33e commit 87fcbbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
File renamed without changes.
2 changes: 0 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
apply plugin: 'java'

version = 'x1.0'

repositories {
jcenter()
}
Expand Down
12 changes: 10 additions & 2 deletions itl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'java'

version = '1.0'
version = '0.7.0'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"

Expand All @@ -11,4 +11,12 @@ dependencies {
task copyToApp(type: Copy) {
from jar
into project(':app').file('libs')
}
}

task dist(type: Zip) {
from jar
from file('../COPYING')
from file('../AUTHORS')
from file('../README.md')
from file('../README.orig.md')
}

0 comments on commit 87fcbbd

Please sign in to comment.