我正在尝试按照this在 IntelliJ 中使用 Gradle 设置 AWS Polly Java SDK 。我已经使用 .js 创建了一个简单的 Spring Boot 应用程序spring intializr
,因此我将教程中指定的项目添加到我的build.gradle
文件中。尝试导入时
import com.amazonaws.services.polly.AmazonPollyClient
IntelliJ 无法解析 name polly
。
这是我的完整build.gradle
文件
buildscript {
ext {
springBootVersion = '2.0.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE"
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'io.ai.vivid'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom 'com.amazonaws:aws-java-sdk-bom:1.11.228'
}
}
dependencies {
compile('org.springframework.boot:spring-boot-starter')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile 'com.amazonaws:aws-java-sdk-s3'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
IntelliJ 还抱怨它无法解析manvenBom
my中的名称build.gradle
。我已经尝试过这样的解决方案,比如使缓存/重启无效,但无法解决问题。