Skip to content

Commit daa2f33

Browse files
authored
Adds license to the distribution (#16)
1 parent 56b93cd commit daa2f33

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ out/
77
.idea/
88
.classpath
99
.project
10-
.DS_Store
10+
.DS_Store
11+
*.iml
12+
*.iws

build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ mainClassName = 'jdk.Main'
55
sourceCompatibility = 9
66
targetCompatibility = 9
77

8-
jar.manifest {
9-
attributes 'Main-Class' : mainClassName
8+
jar {
9+
manifest {
10+
attributes 'Main-Class': mainClassName
11+
metaInf {
12+
from file('.')
13+
include 'LICENSE'
14+
}
15+
}
1016
}
1117

1218
jar.doLast {

0 commit comments

Comments
 (0)