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
Description:
Make a simple error, e.g. forget the artifact.xml file, then the maven build should fail.
Affected Product Version: vscode-car-plugin v.5.2.38
OS, DB, other environment details and versions: Tested on OSX
Steps to reproduce: Minimal example: Create a project with the following structure:
src/main registry-resources/ synapse-config/artifact.xml pom.xml
Run mvn clean package succeeds with error echo $? # 0
mvn clean package
echo $? # 0
Expected Behaviour Run mvn clean package should fail the build, due to the missing artifact.xml in registry-resources. echo $? # 1
echo $? # 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
Make a simple error, e.g. forget the artifact.xml file, then the maven build should fail.
Affected Product Version:
vscode-car-plugin v.5.2.38
OS, DB, other environment details and versions:
Tested on OSX
Steps to reproduce:
Minimal example:
Create a project with the following structure:
Run
mvn clean package
succeeds with errorecho $? # 0
Expected Behaviour
Run
mvn clean package
should fail the build, due to the missing artifact.xml in registry-resources.echo $? # 1
The text was updated successfully, but these errors were encountered: