Maven が成果物をダウンロードしようとするときにビルドを実行しようとするたびに、connection reset
エラーがスローされます。私はEclipseで開発しており、embed-mongodbプラグインを使用しようとしています:
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
<version>0.1.13</version>
<executions>
<execution>
<id>start-embed-mongo</id>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-embed-mongo</id>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
「アーティファクトを転送できませんでした」ため、ビルドは失敗します。
Failed to execute goal com.github.joelittlejohn.embedmongo:embedmongo-maven-plugin:0.1.13:start (start-embed-mongo) on project rest: Execution start-embed-mongo of goal com.github.joelittlejohn.embedmongo:embedmongo-maven-plugin:0.1.13:start failed: Plugin com.github.joelittlejohn.embedmongo:embedmongo-maven-plugin:0.1.13 or one of its dependencies could not be resolved: Failed to collect dependencies at com.github.joelittlejohn.embedmongo:embedmongo-maven-plugin:jar:0.1.13 -> org.apache.maven:maven-project:jar:2.0 -> org.apache.maven:maven-profile:jar:2.0 -> org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8: Failed to read artifact descriptor for org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8: Could not transfer artifact org.codehaus.plexus:plexus-container-default:pom:1.0-alpha-8 from/to central (https://repo.maven.apache.org/maven2): Connection reset -> [Help 1]
ブラウザから URL にアクセスできるので、プロキシの背後にいるとは思いません。