Add codestart data option in CLI and Maven plugin
See original GitHub issueDescription
It would be nice extension codestart to have user customizable data. This is already possible in codestarts but not yet connected in the tooling.
It would behave like this:
quarkus create app -x=my-ext -d=my-ext-codestart.foo.bar=hello,my-ext-codestart.foo.hello=andy
The my-ext-codestart
prefix is required by the codestart system to know the data is targeting this particular codestart data (and avoid conflicts)
The default value is in the codestart.yml:
name: my-ext-codestart
language:
base:
data:
foo:
bar: baz
hello: world
FYI: I created this issue because @gsmet has a need for this.
Issue Analytics
- State:
- Created a year ago
- Comments:26 (23 by maintainers)
Top Results From Across the Web
Building my first extension - Quarkus
Quarkus provides create-extension Maven Mojo to initialize your extension project. It will try to auto-detect its options: from quarkus (Quarkus Core) or ...
Read more >quarcus maven plugin fails to create a project - Stack Overflow
Trying to create a quarkus project from scratch with the command: mvn io.quarkus:quarkus-maven-plugin:1.13.7.
Read more >Creating Your First Helix Resource - Elastic Path Documentation
Define your resources, their relationships, and more in XML; Use Maven to generate Java Interfaces for resource identifiers, prototypes and ...
Read more >Getting started with QuarkusIO - Mastertheboss
This tutorial will introduce you to QuarkusIO, the latest framework for building supersonic Java! Quarkus features a Cloud Native, ...
Read more >Eclipse IDE platform development - tutorial - Vogella.com
For this, select the Window Preferences Plug-in Development API Baselines menu entry. With this setting, Eclipse compare the API in your ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@arpitbhardwaj you can have a look if you can figure out where to do this.
so I now got to import the code and realize that -D already exist in more generic form. somehow I had in my head for codestarts we had separate dedicated command.
so all good - my only gripe is that it relies on command separated “blob” which limits what you can pass in but we can fix that if usecase arises by adding support for i.e.
-QDkey=value
or similar.