我有gradle的春季启动项目。我想使用this库来处理存储在MySQL String记录中的小json数据。
这是我在build.gradle中的依赖项:
dependencies {
compile("org.springframework.data:spring-data-commons:1.10.2.RELEASE")
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("net.minidev:json-smart:2.2")
runtime("mysql:mysql-connector-java")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("junit:junit")
}
我可以成功运行命令:
gradlew clean build
但是我无法导入JSONValue对象。似乎gradle没有下载所有依赖项。以下是我的依赖项:json-smart
这是dependencies screenshot
如何管理导入和使用json-smart JSONValue对象?