Skip to content

Commit 44d3842

Browse files
Huseyn HajiyevHuseyn Hajiyev
Huseyn Hajiyev
authored and
Huseyn Hajiyev
committedJan 14, 2022
Added release
1 parent 3b2f215 commit 44d3842

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ run {
1111
standardInput = System.in
1212
}
1313

14+
configurations{
15+
compile
16+
}
17+
18+
jar {
19+
from {
20+
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
21+
}
22+
manifest {
23+
attributes(
24+
'Implementation-Title': 'Crash Database',
25+
"Main-Class": "Main"
26+
)
27+
}
28+
destinationDirectory = file("$rootDir/my-jar")
29+
archivesBaseName = 'app'
30+
}
31+
1432
group 'org.example'
1533
version '1.0-SNAPSHOT'
1634

0 commit comments

Comments
 (0)
Please sign in to comment.