Skip to content

Commit

Permalink
Merge branch 'Issue239IntegrationTestForRunTests' of https://github.c…
Browse files Browse the repository at this point in the history
…om/JoshwinThomasIBM/liberty-tools-vscode into Issue239IntegrationTestForRunTests
  • Loading branch information
JoshwinThomasIBM authored and JoshwinThomasIBM committed Jan 21, 2025
2 parents 05e57e8 + 4ff874d commit 72a6cf5
Show file tree
Hide file tree
Showing 7 changed files with 1,603 additions and 6,656 deletions.
16 changes: 8 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gulp.task("buildLemminxLiberty", (done) => {
cwd: libertyLemminxDir,
stdio: "inherit",
});
gulp.src(libertyLemminxDir + "/target/" + libertyLemminxName).pipe(gulp.dest("./jars"));
gulp.src(libertyLemminxDir + "/target/" + libertyLemminxName, { encoding: false }).pipe(gulp.dest("./jars"));
done();
});

Expand All @@ -31,7 +31,7 @@ gulp.task("buildLibertyServer", (done) => {
cwd: libertyLSDir,
stdio: "inherit",
});
gulp.src(libertyLSDir + "/target/" + libertyLSName).pipe(gulp.dest("./jars"));
gulp.src(libertyLSDir + "/target/" + libertyLSName, { encoding: false }).pipe(gulp.dest("./jars"));
done();
});

Expand All @@ -40,7 +40,7 @@ gulp.task("buildJakartaJdt", (done) => {
cwd: jakartaJdtDir,
stdio: "inherit",
});
gulp.src(jakartaJdtDir + "/target/" + jakartaJdtName).pipe(gulp.dest("./jars"));
gulp.src(jakartaJdtDir + "/target/" + jakartaJdtName, { encoding: false }).pipe(gulp.dest("./jars"));
done();
});

Expand All @@ -49,7 +49,7 @@ gulp.task("buildJakartaLs", (done) => {
cwd: jakartaLSDir,
stdio: "inherit",
});
gulp.src(jakartaLSDir + "/target/" + jakartaLSName).pipe(gulp.dest("./jars"));
gulp.src(jakartaLSDir + "/target/" + jakartaLSName, { encoding: false }).pipe(gulp.dest("./jars"));
done();
});

Expand All @@ -69,12 +69,12 @@ gulp.task("downloadLibertyLSJars", (done) => {
url: libertyLemminxURL,
file: libertyLemminxName,
})
.pipe(gulp.dest("./jars"));
.pipe(gulp.dest("./jars", { encoding: false}));
download({
url: libertyLSURL,
file: libertyLSName,
})
.pipe(gulp.dest("./jars"));
.pipe(gulp.dest("./jars", { encoding: false}));
done();
});

Expand All @@ -94,12 +94,12 @@ gulp.task("downloadLSP4JakartaJars", (done) => {
url: jakartaJDTURL,
file: jakartaJdtName,
})
.pipe(gulp.dest("./jars"));
.pipe(gulp.dest("./jars", { encoding: false}));
download({
url: jakartaLSURL,
file: jakartaLSName,
})
.pipe(gulp.dest("./jars"));
.pipe(gulp.dest("./jars", { encoding: false}));
done();
});

Expand Down
Loading

0 comments on commit 72a6cf5

Please sign in to comment.