java - What's the meaning of "Maven projects do not use runtimes" -
when convert java web project (with runtime environment of tomcat or so) ordinary project maven project, prompts "maven projects not use runtimes". what's meaning of it?
the purpose of maven support build activities resolving build time dependencies. so, in maven pom should add libraries required complete successful build.
the runtime libraries not required perform build , setup runtime libraries there other ways i.e. can add them using project properties dialog box --> targeted runtimes.
you can refer this discussion relevant question.
Comments
Post a Comment