我已经有了build.gradle文件,并且一直在按照教程进行设置,但是我只是想知道这些看似魔术的依赖字符串是从哪里来的?
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-mustache')
compile('com.fasterxml.jackson.module:jackson-module-kotlin')
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
compile("org.jetbrains.kotlin:kotlin-reflect")
compile("org.postgresql:postgresql:42.0.1-SNAPSHOT")
testCompile('org.springframework.boot:spring-boot-starter-test')
}
其次,但这可能是一个很好的问题,因为这将是示例。我似乎无法将postgres驱动程序添加到我的依赖项中。我遵循的所有教程似乎都会产生某种错误。如果可以的话,教我“如何钓鱼”,并告诉我在哪里可以查找将postgres添加到我的项目中的魔术字符串?
相关分类