简体   繁体   中英

maven-ant .war file without web.xml file

I have a important question , I don't have a web.xml in my java project and i want to create a .war file of that project. Can i do that? as I have searched all over but did not found anything, can you please help me out here?

I have pom.xml in the project and it has all the dependencies.

I have created a maven project and then i am using the maven-ant plugin, so, in ant, i want to create .war file .

After building it through ant , I have build.xml and maven-build.xml files. Please help me out here!

Thank you!

Check your folder project/target to certify your .war was not created

Your pom.xml need have this structure after your dependencies to generate .war

<build>
 <finalName>your .war name</finalName>
</build>

您可以将ant的“ war”任务与参数needxmlfile设置为false一起使用

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM