Welcome to JavaRanch !!!
You are getting this maven build error because maven not able to get the jar files from repository, check your dependency details if those are correct then check your central repository url.
you should have central repository under repositories tag in pom.xml
<repository>
<id>maven.central</id>
<url>
http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
in case if the missing items(as per your logs) are doesn't have dependency then you should add snapshot in your pom.xml and also you need to add those snapshot into local repository.
you can add those into your local repository by check out those components and run locally.