У меня есть 2 проекта, my-app и string-utils. Мое приложение зависит от string-utils. При создании my-app я получаю:
«Проект с путем»: не удалось найти string-utils в root проекте «my-app»
Разве не следует включать работу здесь?
Сканирование моего Gradle здесь .
├── my-app
│ ├── build
│ ├── build.gradle
│ ├── settings.gradle
│ └── src
└── string-utils
├── build
├── build.gradle
├── settings.gradle
└── src
/ my-app / settings.gradle:
rootProject.name = 'my-app'
includeBuild '../string-utils'
/ my-app / build.gradle:
plugins {
id 'java'
id 'application'
id 'idea'
}
group "org.sample"
version "1.0"
application {
mainClassName = "org.sample.myapp.Main"
}
dependencies {
implementation project(':string-utils')
}
repositories {
jcenter()
}
/ string-utils / settings.gradle:
rootProject.name = 'string-utils'
При работе:
/my-app$ gradle build --scan --info
Initialized native services in: /home/andrew/.gradle/native
The client will now receive all logging from the daemon (pid: 202204). The daemon log file: /home/andrew/.gradle/daemon/6.2.1/daemon-202204.out.log
Starting 4th build in daemon [uptime: 38 mins 14.32 secs, performance: 99%, non-heap usage: 20% of 268.4 MB]
Using 128 worker leases.
Starting Build
Compiling settings file '/tmp/5/my-app/settings.gradle' using BuildScriptTransformer.
Settings evaluated using settings file '/tmp/5/my-app/settings.gradle'.
Projects loaded. Root project using build file '/tmp/5/my-app/build.gradle'.
Included projects: [root project 'my-app']
[composite-build] Configuring build: /tmp/5/string-utils
Configure project :string-utils
Evaluating project ':string-utils' using build file '/tmp/5/string-utils/build.gradle'.
Registering project ':string-utils' in composite build. Will substitute for module ':string-utils'.
Configure project :
Evaluating root project 'my-app' using build file '/tmp/5/my-app/build.gradle'.
Compiling build file '/tmp/5/my-app/build.gradle' using SubsetScriptTransformer.
Compiling build file '/tmp/5/my-app/build.gradle' using BuildScriptTransformer.
FAILURE: Build failed with an exception.
* Where:
Build file '/tmp/5/my-app/build.gradle' line: 19
* What went wrong:
A problem occurred evaluating root project 'my-app'.
Project with path ':string-utils' could not be found in root project 'my-app'.