在我的springboot项目中,我想在项目文件夹中添加一个.jar作为gradle依赖项,并将其发送给另一个插件(liquibase)进行处理。
目前这大致是build.gradle的样子
repositories {
maven {
url "${artifactory_contextUrl}/plugins-release"
}
maven {
url "${artifactory_contextUrl}/libs-release"
}
}
dependencies {
String someDependency = "com.service.serve:somedependency:111.5.0"
compile ("$someDependency ") {
changing = true
}
liquibaseConfig ("$someDependency ")
如何从项目文件夹添加.jar依赖项,并将其发送到liquibase插件以运行sql更改。注意:所有可传递的依赖项都需要在编译和运行时公开。
到目前为止,我已经尝试了flatdir、api、implementation、compile的多种组合,并将依赖项作为file()发送,但没有任何效果。
暂无答案!
目前还没有任何答案,快来回答吧!