Skip to content

Commit 87fcbbd

Browse files
committed
Update build config and version to 0.7.0
1 parent 5a4b33e commit 87fcbbd

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

File renamed without changes.

app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
apply plugin: 'java'
22

3-
version = 'x1.0'
4-
53
repositories {
64
jcenter()
75
}

itl/build.gradle

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'java'
22

3-
version = '1.0'
3+
version = '0.7.0'
44
sourceCompatibility = "1.8"
55
targetCompatibility = "1.8"
66

@@ -11,4 +11,12 @@ dependencies {
1111
task copyToApp(type: Copy) {
1212
from jar
1313
into project(':app').file('libs')
14-
}
14+
}
15+
16+
task dist(type: Zip) {
17+
from jar
18+
from file('../COPYING')
19+
from file('../AUTHORS')
20+
from file('../README.md')
21+
from file('../README.orig.md')
22+
}

0 commit comments

Comments
 (0)