use mirror of aliyun
//not install SouGou input method successfully
Eclipse:
window->preference->Maven->User setting s->user setting->[Update]button
create file ~/.m2/settings.xml with following content
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
use local jars
on pom.xml file
right click->run as->maven build…(2nd)->fill & apply
Goals : install:install-file
Proiles: -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar
Apply . Run