maven deploy additional jar file

前端 未结 6 1014
花落未央
花落未央 2020-12-30 00:05

I have an artifact which is being built and deployed in a particular way (not as a jar file). In the course of deployment, a war file is built.

How can I configure t

6条回答
  •  醉话见心
    2020-12-30 00:34

    You should add the corresponding dependency of the artifact in the dependencies of the pom file.

    Ex:

    
            org.apache.myfaces.core
            myfaces-api
            1.2.2
            compile
    
    

提交回复
热议问题