We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a4b33e commit 87fcbbdCopy full SHA for 87fcbbd
3 files changed
README.ORIG.md README.orig.mdREADME.ORIG.md renamed to README.orig.md
app/build.gradle
@@ -1,7 +1,5 @@
1
apply plugin: 'java'
2
3
-version = 'x1.0'
4
-
5
repositories {
6
jcenter()
7
}
itl/build.gradle
@@ -1,6 +1,6 @@
-version = '1.0'
+version = '0.7.0'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
@@ -11,4 +11,12 @@ dependencies {
11
task copyToApp(type: Copy) {
12
from jar
13
into project(':app').file('libs')
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