Changing packaging based on active profile in pom

前端 未结 3 659
北荒
北荒 2020-12-01 13:39

I have a project which I compile with maven. I have different profiles declared in pom.xml. For some of these profiles, I prefer building a war, and for other profiles I pre

3条回答
  •  一整个雨季
    2020-12-01 14:10

    Have you looked at the attachClasses configuration setting of the war plugin? This simple setting would let you build both a war and a jar (by default with the classifier "classes") in a single maven execution.

提交回复
热议问题