**gradle build:** is throwing xsbti/CompileFailed error
Scala + gradle + flatDir作为存储库,抛出xsbti完全失败的错误。请参阅附呈的图像
**build.gradle**
我的构建级文件附在下面的中
**Note: with MavenCentral repository its working fine. Only for flatDir as repository its not working**
Eclipse IDE for Java开发人员(Neon)以及默认的Gradle插件(Buildship?)都是用的。
使用Eclipse创建了一个Gradle Git项目。本地JAR存储在workspace/ProjectName/lib/nameOfJAR.jar目录中。它是作为依赖项添加到此项目的,使用以下build.gradle配置。
...
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file re
我有一个库模块,我想将它作为AAR依赖项包含到一个示例应用程序中:
:my-library
:sample-app
因此,在sample/build.gradle中,我做了以下工作:
repositories {
flatDir {
dirs "../my-library/build/outputs/aar"
}
}
// I have different flavors that specify whether to use the source or binary (aar) dependency
flavorDimensions
使用AndroidStudio3.X.X,将本地.AAR文件添加到Android项目中是行不通的(构建成功,但获得运行时异常)
我尝试了以下方法(请参考:、等),但没有一种方法适合我:
1. Import the local aar file:
(I) File>New>New Module>Import the .AAR Package [On "Finish" click the .AAR gets included automatically into settings.gradle file as below:
include
我在我的项目中添加了一个aar of 库。我把它放在flatDir目录中,就像描述的一样,它工作得很好。
现在,我将我的一些代码移到名为commons的库模块中,以便在另一个项目中重用它。socialauth-android将完全由库模块使用,因此我已经将它移到project/commons/libs/中--重写了我的build.gradle文件。从现在开始,我无法构建我的项目,因为出现了以下错误:
Error:A problem occurred configuring project ':ScrollApplication'.
> Could not resolve
下面是我的build.gradle文件
plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'java'
}
group = 'jwt.demo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
flatDir {
dirs 'C://Users//David//.gradle
如果构建项目所需的所有jars (plugins+dependencies)都存在于flatDir中,如何构建gradle构建?我在我的D驱动器中的"D:/path/to/local/directory“下有所有需要的jars。现在,当我尝试进行gradle构建时,每次都会因为不同的原因而失败。需要帮助来修复相同的问题(Gradle版本6.3)。我的Build.gradle中的代码
buildscript {
repositories {
// If you want to use a (flat) filesystem directory as a repos
我正在尝试设置一个离线的Gradle构建。
理想情况下,我希望在任意的maven存储库中引用我的所有项目依赖项,如下所示:
repositories {
maven {
url 'file://PATH/TO/REPO'
}
}
但是,在新的Gradle安装(no ~/.gradle缓存)中,上面的内容失败了,如下所示:
* What went wrong
Plugin [id: PLUGINID, version: PLUGINVERSION] was not found in any of the
following sources:
-