0
新しいプロジェクトを開始すると、jarライブラリ全体(5時間以上)をダウンロードするには時間がかかりすぎます。どうすれば対応できますか?IDEAでgradleを長時間ダウンロードする
これは私のbuild.gradleファイル内のコードです:
import com.sun.org.apache.xalan.internal.xsltc.cmdline.Compile
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
compile 'javax:javaee-api:7.0'
compile 'mysql:mysql-connector-java:5.1.39'
compile 'jstl:jstl:1.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.3'
compile 'org.mybatis:mybatis:3.4.1'
compile 'commons-fileupload:commons-fileupload:1.3.1'
compile 'org.springframework:spring-context:4.3.4.RELEASE'
compile 'org.springframework:spring-jdbc:4.3.4.RELEASE'
compile 'org.springframework:spring-webmvc:4.3.4.RELEASE'
compile 'org.springframework:spring-context-support:4.3.4.RELEASE'
compile 'org.projectlombok:lombok:1.16.6'
compile 'org.mybatis:mybatis-spring:1.3.0'
compile 'org.freemarker:freemarker:2.3.23'
compile 'org.jasypt:jasypt:1.9.2'
}
購入より高速のインターネット接続?すべての依存関係をダウンロードするのに約5秒かかりました。 – Vampire
しかし、私の接続速度は約12Mb/sです。他に何もないのですか? –
あなたのコンピュータ、あなたのネットワーク、あなたのISP、.....かなりダウンロード速度に影響するすべてのものになることができます。私はちょうどGradleやMavenCentralの問題ではないことを指摘したいと思っていますが、あなたのためには特別です。 – Vampire