Skip to content

Commit

Permalink
Avoid hard coded value for streamKey
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz committed Jun 19, 2024
1 parent 65bfb20 commit 1339742
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const createQuarkusApp = () => {
const streamkey = buildStreamKeyFromVersion(ctx.input.values.quarkusVersion);

const postData = {
streamKey: streamkey ? streamkey : 'io.quarkus.platform:3.9',
streamKey: streamkey,
groupId: ctx.input.values.groupId ? ctx.input.values.groupId : 'org.acme',
artifactId: ctx.input.values.artifactId ? ctx.input.values.artifactId : 'code-with-quarkus',
version: ctx.input.values.version ? ctx.input.values.version : '1.0.0-SNAPSHOT',
Expand Down

0 comments on commit 1339742

Please sign in to comment.