-
Notifications
You must be signed in to change notification settings - Fork 190
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
creation of extension on windows failed #2999
Milestone
Comments
Closed
Thanks for the report, @dufoli! Could you please try to remove the three slashes around here https://github.com/apache/camel-quarkus/blob/main/pom.xml#L543 as a quick workaround? I'll have a Windows VM available in ~2 weeks and I'd work on a permanent fix then. |
IT works!
|
Yes, it does. Could you please submit it as a separate fix for this issue? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OS : Windows
mvn cq:create -N -Dcq.artifactIdBase=cxf
error log:
[ERROR] Failed to execute goal org.l2x6.cq:cq-maven-plugin:0.38.0:create (default-cli) on project camel-quarkus: Execution default-cli of goal org.l2x6.cq:cq-maven-plugin:0.38.0:create failed: Illegal character [:] in path at index 4: ///D:\src\camel-quarkus/tooling/create-extension-templates -> [Help 1]
it come from main pom.xml:
and it is used in org.apache.camel.quarkus.maven.CqUtils
templatesUriBase on my desktop was :
file:///D:\src\camel-quarkus/tooling/create-extension-templates
FILE_PREFIX is removed so I end with "///D:\src\camel-quarkus/tooling/create-extension-templates" in createTemplateLoader
I think uri on windows must be
D:\src\camel-quarkus\tooling\create-extension-templates
quick hack is maybe just in org.apache.camel.quarkus.maven.CqUtils.createTemplateLoader :
The text was updated successfully, but these errors were encountered: