Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit d50b81b

Browse files
authored
Merge pull request #162 from bootstraponline/patch-1
Remove class path from fatJar
2 parents df2d2c4 + 2ac877f commit d50b81b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ClassySharkWS/build.gradle

+1-3
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,12 @@ jar {
5353
}
5454
}
5555

56-
//create a single Jar with all dependencies
56+
// Create a single Jar with all dependencies
5757
task fatJar(type: Jar) {
5858
manifest {
5959
attributes (
6060
'Main-Class': 'com.google.classyshark.Main',
61-
"Class-Path": configurations.compile.collect { "lib/$it.name" }.join(' ')
6261
)
63-
6462
}
6563
baseName = project.name + '-all'
6664
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }

0 commit comments

Comments
 (0)