DEV Community

pranavinu
pranavinu

Posted on

Jar files & Dpendancy

Maven project:
1)it is to built web application
2)it consist of many folders

Jar files(java Archive file)
1)Every tool has its own jar files
2)For a single tool it consist of many .class files
3)It is to access a pre defined class for a tool by importing jar files

Dependancy
1)Every tool has its own dependancy
2)It is in xml language
3)It is to access a pre defined class by attaching the dependency in pom.xml file
4)It can avoid version conflict by changing the version in depenency

Pom.xml:It is a file-to maintain dependency

Maven Repository-it is like a library,to maintain the dependency for a different tools

Top comments (0)