java - Maven finds artifact but cannot compile -


when run mvn compile list of errors compilation package missing have dependency in pom.xml.

pom.xml  `<dependency>         <groupid>com.fortysevendeg.android</groupid>         <artifactid>swipelistview</artifactid>         <version>1.0-snapshot</version>         <type>apklib</type>  </dependency>`  error error: package com.fortysevendeg.swipelistview not exist 

i appreciate on one. have been banging head against while now.

looks mvn not able pull package ( com.fortysevendeg.swipelistview ) repository. figure out, check-out package code repository ( i.e svn, github ) work space. recheck pom.xml exact name & mvn install.

link: read

downloading remote repository  downloading in maven triggered project declaring dependency not present in local repository (or snapshot, when remote repository contains 1 newer).  

by default, maven download central repository.

during mvn compile first in local workspace & if doesn't find pull repository configured to.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -