当前位置: 首页 > 知识库问答 >
问题:

`gradle build`卡在compileJava

魏波娃
2023-03-14

我执行以下命令

分级清理生成--调试--扫描--信息--堆栈跟踪

plugins {
    id 'org.springframework.boot' version '2.1.7.RELEASE'
    id 'io.spring.dependency-management' version '1.0.8.RELEASE'
    id 'java'
}
//apply plugin: 'idea'

group = 'com.xxx'
version = '0.0.1'
sourceCompatibility = '1.8'

repositories {
    mavenCentral()
    jcenter()
    //maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation 'org.projectlombok:lombok:1.18.8'
    annotationProcessor 'org.projectlombok:lombok:1.18.8'
    implementation "mysql:mysql-connector-java"
    implementation "com.h2database:h2"
    implementation "com.googlecode.plist:dd-plist:1.21"
    implementation "net.dongliu:apk-parser:2.6.9"
    implementation "org.springframework.boot:spring-boot-starter-validation"
    implementation "org.springframework.boot:spring-boot-starter-security"
    implementation 'com.auth0:java-jwt:3.8.2'
    implementation 'com.alibaba:fastjson:1.2.59'
    implementation 'org.apache.commons:commons-lang3:3.9'
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    testImplementation "junit:junit"
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    testImplementation 'org.projectlombok:lombok:1.18.8'
    testAnnotationProcessor 'org.projectlombok:lombok:1.18.8'
    testImplementation "mysql:mysql-connector-java"
    testImplementation "com.h2database:h2"
    testImplementation "com.googlecode.plist:dd-plist:1.21"
    testImplementation "net.dongliu:apk-parser:2.6.9"
    testImplementation "org.springframework.boot:spring-boot-starter-validation"
    testImplementation "org.springframework.boot:spring-boot-starter-security"
    testImplementation 'com.auth0:java-jwt:3.8.2'
    testImplementation 'com.alibaba:fastjson:1.2.59'
    testImplementation 'org.apache.commons:commons-lang3:3.9'
    testImplementation fileTree(dir: 'libs', include: ['*.jar'])

}

共有1个答案

邢心水
2023-03-14

现在,我通过将我的jdk更新到openjdk@1.13.0来修复它

 类似资料:
  • 错误:任务“:app:processDebugManifest”的执行失败。 清单合并失败:属性元数据#android。支持VERSION@value值=(25.3.1)来自[com.android.support:appcompat-v7:25.3.1]AndroidManifest。xml:27:9-31也出现在[com.android.support:recyclerview-v7:26.0

  • 基本上,我在cassandra上运行两个期货查询,然后我需要做一些计算并返回值(值的平均值)。 这是我的代码: 那么问题出在哪里呢? skus.foreach 在 ListBuffer 中追加结果值。由于一切都是异步的,当我尝试在我的主数据库中获取结果时,我得到了一个错误,说我不能被零除。 事实上,由于我的Sku.findSkusByProduct返回一个Future,当我尝试计算平均值时,卷是空

  • 设置 多个独立的源系统将AVRO事件推送到Kafka主题中。KafkaS3接收器连接器从本主题读取AVRO事件,并写入S3拼花格式。 问题 我们的架构注册表中的 AVRO 架构不符合标准。例如,源系统中的十进制字段在架构注册表中具有基类型字符串和逻辑类型十进制。AVRO 中不允许这些类型的组合(十进制逻辑类型必须始终具有基本类型修复/字节。 这些不正确的AVRO模式导致不正确的拼花文件模式。E、

  • 我正在用一个URL初始化一个新的MPMoviePlayerViewController,以从服务器播放全屏视频。播放器屏幕出现后,它停在“加载...”上,但没有实际加载发生,因为某种原因根本没有网络通信。我使用以下代码:

  • 我有一个关于阿卡的询问模式的问题。 我正在使用应用程序中的ask模式调用演员。我的应用程序是一个普通的类(不是演员本身): 然而,上面所说的演员叫第二个演员,比如: 第二个参与者会返回实际的响应,比如: 所以基本上涉及到一个间接寻址,当Actor1调用Actor2时,它使用

  • 我有下面的课: