We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100262e commit e3a5109Copy full SHA for e3a5109
src/cfml/system/util/CompileDSL.cfc
@@ -635,6 +635,18 @@ component accessors=true {
635
}
636
637
function buildFatJar() {
638
+ /*
639
+ is a self-sufficient archive which contains both classes and
640
+ dependencies needed to run an application
641
+ to make a fat jar
642
+ we need:
643
+ - Main-Class attribute in the manifest file
644
+ - include dependency jars
645
+ - it contains classes from all the libraries, on which your project depends
646
+ and of course the classes of the current project
647
+ - it has to do the same as
648
+ configurations.compile.collect{ it.isDirectory() ? it : zipTree( it ) }
649
+ */
650
j = "run fat jar ";
651
shell.printString( " " & j & " " );
652
//command( j ).run();
0 commit comments