gpt4 book ai didi

java - 在根项目中找不到任务 'generateApolloSources'

转载 作者:行者123 更新时间:2023-12-01 16:54:22 35 4
gpt4 key购买 nike

我在java代码中使用apollo graphql客户端。我的 gradle 文件是

plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

configurations {
compileOnly {
extendsFrom annotationProcessor
}
}

repositories {
mavenCentral()
maven {
url 'http://dl.bintray.com/apollographql/android'
}
}

dependencies {
implementation "com.apollographql.apollo:apollo-android-support:1.0.0"
implementation "com.apollographql.apollo:apollo-runtime:1.0.0"
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}

test {
useJUnitPlatform()
}

我已遵循 https://github.com/apollographql/apollo-android 中提到的文档我被困在第 4 步和第 5 步。无法添加

  generateKotlinModels.set(false)
}

在 gradle 文件中以及执行命令时gradlewgenerateApollo 其获取错误为 在根项目“testProject”中找不到任务“generateApolloSources”

谁能帮忙

最佳答案

您需要应用 Apollo 插件:

plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'com.apollographql.apollo' version '2.1.0'
}

您还应该将 Apollo 依赖项升级到“2.1.0”,因为“1.0.0”已经很旧了。

关于java - 在根项目中找不到任务 'generateApolloSources',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61620506/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com