We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b93cd commit daa2f33Copy full SHA for daa2f33
.gitignore
@@ -7,4 +7,6 @@ out/
7
.idea/
8
.classpath
9
.project
10
-.DS_Store
+.DS_Store
11
+*.iml
12
+*.iws
build.gradle
@@ -5,8 +5,14 @@ mainClassName = 'jdk.Main'
5
sourceCompatibility = 9
6
targetCompatibility = 9
-jar.manifest {
- attributes 'Main-Class' : mainClassName
+jar {
+ manifest {
+ attributes 'Main-Class': mainClassName
+ metaInf {
+ from file('.')
13
+ include 'LICENSE'
14
+ }
15
16
}
17
18
jar.doLast {
0 commit comments