-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Support docker copy of resources #92
Conversation
@@ -129,6 +129,18 @@ | |||
private String cfgPath; | |||
|
|||
/** | |||
* Resource to copy out of the docker container. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these are not needed for other mojos and could be moved into CopyMojo
? Otherwise the help for the other mojos will be confusing.
Great stuff -- do you want to update the usage file? |
* Resource to copy out of the docker container. | ||
*/ | ||
@Parameter(property = "docker.targetPath") | ||
private String targetPath; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be called dest
?
All updated. The CI failure is because you need to update both this and the orchestration stuff at the same time. |
Support docker copy of resources
Allow artifacts created by the build to be extracted from docker-land to maven-land