maven: Unable to update index

请帮我查看下这个问题如何解决:
15-3-5 下午09时20分02秒: Updating index CN|http://maven.oschina.net/content/groups/public/
15-3-5 下午09时20分02秒: Downloading 08410d2e103567584ef53dbe8846615d : nexus-maven-repository-index.properties
15-3-5 下午09时20分02秒: Downloaded Repository[08410d2e103567584ef53dbe8846615d|http://maven.oschina.net/content/groups/public/.index]/nexus-maven-repository-index.properties
15-3-5 下午09时20分03秒: Unable to download Repository[08410d2e103567584ef53dbe8846615d|http://maven.oschina.net/content/groups/public/.index]/nexus-maven-repository-index.gz: java.io.IOException
15-3-5 下午09时20分03秒: Unable to update index for CN|http://maven.oschina.net/content/groups/public/

估计你都解决了,你这个大部分是因为资源网站都蹦了,换几个镜像源就可以了。
我是用这个解决的

<mirror>
      <id>central</id>
      <name>Maven Repository Switchboard</name>
      <url>http://repo1.maven.org/maven2/</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
    <mirror>
      <id>repo2</id>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://repo2.maven.org/maven2/</url>
    </mirror>

关于idea maven其他内容的话可以看看下面这个链接,有哪里不会可以再提问,这个东西也折磨了我好久
idea-maven无法更新解决方案