Checkpoint

This commit is contained in:
Joseph Garrone
2024-05-12 19:37:16 +02:00
parent 385cb85309
commit a26a813ad5
3 changed files with 24 additions and 23 deletions

View File

@ -10,6 +10,12 @@ export async function buildJar(params: {
keycloakifyBuildDirPath: string;
};
}): Promise<void> {
{
const { pomFileCode } = generatePom({ buildOptions });
fs.writeFileSync(pathJoin(buildOptions.keycloakifyBuildDirPath, "pom.xml"), Buffer.from(pomFileCode, "utf8"));
}
child_process.execSync("mvn clean install", { "cwd": buildOptions.keycloakifyBuildDirPath });
// TODO: Implement
}