File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
src/main/java/gr/gousiosg/javacg/stat/support Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -152,13 +152,7 @@ public static Optional<RepoTool> obtainTool(String folderName){
152152 private void moveJars () throws IOException {
153153 Path sourceDir = Paths .get (System .getProperty ("user.dir" ), getProjectDir (), "target" );
154154 Path targetDir = Paths .get (System .getProperty ("user.dir" ), "artifacts" , "output" );
155-
156- // @todo may want to be able to override this in the yaml file on a project basis...
157- String depGlob = this .name + "*-with-dependencies.jar" ;
158- String testGlob = this .name + "*-tests.jar" ;
159-
160- moveFiles (sourceDir , targetDir , depGlob );
161- moveFiles (sourceDir , targetDir , testGlob );
155+ moveFiles (sourceDir , targetDir , "*.jar" );
162156 }
163157
164158 private void moveFiles (Path sourceDir , Path targetDir , String glob ) throws IOException {
You can’t perform that action at this time.
0 commit comments