我是gradle的新手,我正在构建一个项目。现在我想从本地repo导入maven依赖项到我的gradle项目。所以我的本地仓库的路径就像
Users/test/.m2/org/springframework/spring-jdbc/4.3.8.RELEASE
所以我试过的是
maven{
url uri('/Users/test/.m2/repository')
}
repositories {
mavenLocal()
mavenCentral()
}
和
我的 build.gradle
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.smudmmlta.dgs'
version = '1.0'
sourceCompatibility = 1.8
maven{
url uri('/Users/test/.m2/repository')
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
compile('org.springframework.dao')
compile('com.zaxxer:HikariCP:2.7.6')
compile('org.mindrot:jbcrypt:0.4')
compile('org.springframework:spring-jdbc')
}
在此之后,程序仍会抛出错误,如下所示:
import org.springframework.jdbc.core.JdbcTemplate;
导入org.springframework.jdbc无法解析
因为未解析的依赖项。 任何帮助表示赞赏。
修改 我也改变了这部分就像
repositories {
mavenLocal()
mavenCentral()
maven{
url uri('/Users/test/.m2/repository')
}
}