Skip to content

Tag: maven-plugin

Maven Package Command Failure

I am new with maven and package command for my project is failing but I have not been able to figure out what the error is from the generated log. Below is the output of the mvn clean package -X This is pom.xml Also, I am using jenv to toggle between different java versions, since I have another project that

Using custom packaging type as dependency in maven

I have created a custom packaging type in my maven plugin so that I can deploy files in this custom format. E.g. I have a project that uses this format for packaging. The pom.xml has: I am able to deploy successfully to a repository. But now I want to use this as a dependency in another project. E.g. by addin…