We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to be able to generate IDE launchers. For example:
mvn vertx:idea
or
mvn vertx:eclipse
I believe both look into the project directory for launchers. And then it's easy to start the app in debug mode (without the need to run debug mode)
The text was updated successfully, but these errors were encountered:
Files for IDEA should be place into .idea\runConfigurations. Here's a sample:
.idea\runConfigurations
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="SimpleServer" type="Application" factoryName="Application" nameIsGenerated="true"> <envs> <env name="ENV" value="VAR" /> </envs> <option name="MAIN_CLASS_NAME" value="test.logging.SimpleServer" /> <module name="vertx-context-logging" /> <option name="PROGRAM_PARAMETERS" value="--programargument" /> <option name="VM_PARAMETERS" value="--vmoptions" /> <option name="WORKING_DIRECTORY" value="/test/workingdir" /> <extension name="coverage"> <pattern> <option name="PATTERN" value="test.logging.*" /> <option name="ENABLED" value="true" /> </pattern> </extension> <method v="2"> <option name="Make" enabled="true" /> </method> </configuration> </component>
Sorry, something went wrong.
No branches or pull requests
It would be great to be able to generate IDE launchers. For example:
or
I believe both look into the project directory for launchers. And then it's easy to start the app in debug mode (without the need to run debug mode)
The text was updated successfully, but these errors were encountered: