@eclipse-glsp/cli 2.7.0-next.23 → 2.7.0-next.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -14815,14 +14815,14 @@ async function buildSingleRepo(repo, options) {
|
|
|
14815
14815
|
break;
|
|
14816
14816
|
}
|
|
14817
14817
|
case "glsp-server": {
|
|
14818
|
-
await execAsync("mvn clean verify -Pm2 -Pfatjar -Dstyle.color=always", mvnOpts);
|
|
14818
|
+
await execAsync("mvn clean verify -Pm2 -Pfatjar -Dstyle.color=always -B", mvnOpts);
|
|
14819
14819
|
break;
|
|
14820
14820
|
}
|
|
14821
14821
|
case "glsp-eclipse-integration": {
|
|
14822
14822
|
LOGGER.debug("Yarn build for client");
|
|
14823
14823
|
await execAsync("yarn", { ...yarnOpts, cwd: path12.join(repoDir, "client") });
|
|
14824
14824
|
LOGGER.debug("Maven build for server");
|
|
14825
|
-
await execAsync("mvn clean verify -Dstyle.color=always", { ...mvnOpts, cwd: path12.join(repoDir, "server") });
|
|
14825
|
+
await execAsync("mvn clean verify -Dstyle.color=always -B", { ...mvnOpts, cwd: path12.join(repoDir, "server") });
|
|
14826
14826
|
break;
|
|
14827
14827
|
}
|
|
14828
14828
|
default: {
|