java - Gradle 在多模块 micronaut 项目上运行失败

我的项目结构如下

项目产品和API网关共享common项目为common。 因为在 settings.gradle 中,我已经包含了如下项目

rootProject.name = 'src'
include 'common', 'fetebird-apigateway', 'fete-bird-product'

在 API 网关 build.gradle 中,我包含了以下依赖项

dependencies {
    implementation project(':common')
    }

在产品 build.gradle 中,我包含了以下依赖项\

    plugins {
    id "com.github.johnrengelman.shadow" version "6.0.0"
    id "io.micronaut.application" version '1.0.3'
}

version "0.1"
group "fete.bird"

repositories {
    mavenCentral()
    jcenter()
}

micronaut {
    runtime "netty"
    testRuntime "junit5"
    processing {
        incremental true
        annotations "fete.bird.*"
    }
}

dependencies {
    annotationProcessor("io.micronaut.openapi:micronaut-openapi")
    annotationProcessor("io.micronaut.data:micronaut-data-processor")
    implementation("io.micronaut:micronaut-validation")
    implementation("io.micronaut:micronaut-runtime")
    implementation("javax.annotation:javax.annotation-api")
    implementation("io.micronaut:micronaut-http-client")
    implementation("io.swagger.core.v3:swagger-annotations")
    implementation("io.micronaut:micronaut-discovery-client")
    implementation("io.micronaut.rxjava3:micronaut-rxjava3")
    implementation("io.micronaut.kafka:micronaut-kafka")
    implementation("io.micronaut.data:micronaut-data-hibernate-jpa")
    implementation("io.micronaut.mongodb:micronaut-mongo-reactive")
    testImplementation("de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.0.1")
    implementation project(':common')
    runtimeOnly("ch.qos.logback:logback-classic")
}

mainClassName = "fete.bird.ProductApplication"
java {
    sourceCompatibility = JavaVersion.toVersion('15')
    targetCompatibility = JavaVersion.toVersion('15')
}
tasks.withType(JavaCompile) {
    options.fork = true
    options.forkOptions.jvmArgs << '-Dmicronaut.openapi.views.spec=rapidoc.enabled=true,swagger-ui.enabled=true,swagger-ui.theme=flattop'
}

common.buid.gradle

plugins {
    id 'java'
}

group 'fete.bird'
version '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

产品主类

public class ProductApplication {

    public static void main(String[] args) {
        Micronaut.run(ProductApplication.class, args);
    }
}

当我用命令行或intellj idea运行单个项目时

$ gradle build

$ gradle run

异常

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.
-----------
* Where:
Build file '/Users/macbook/Projects/FeteBird-Microservice/src/fete-bird-product/build.gradle' line: 37

* What went wrong:
A problem occurred evaluating root project 'fete-bird-product'.
> Project with path ':common' could not be found in root project 'fete-bird-product'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring root project 'fete-bird-product'.
> Failed to notify project evaluation listener.
   > Cannot query the value of extension 'application' property 'mainClass' because it has no value available.
   > Cannot query the value of extension 'application' property 'mainClass' because it has no value available.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

问题在于 在根项目“fete-bird-product”中找不到路径为“:common”的项目。

最佳答案

我认为您的项目结构有点不正确。根 build.gradle 应该在项目的根目录中,而不是在 src 中。

我创建了这个 repo前段时间,它利用了多模块设置。如果需要,您可以忽略 BuildSrc 模块。

.
├── build.gradle.kts
├── moduleA
│   └── build.gradle.kts
├── moduleB
│   └── build.gradle.kts
├── gradle
│   └── wrapper
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts

https://stackoverflow.com/questions/64412045/

相关文章:

qt - 带有在运行时加载的自定义 QML 插件的基于 CMake 的项目仅在 MinGW 下失败

ruby-on-rails - "Could not find concurrent-ruby-1.

html - 空白 nowrap 但如果大于 css 中的最大宽度则换行

r - 如何使用 ggplot 自定义多面图中的背景颜色

google-sheets - Google 表格中的 ArrayFormula 和 "AND"公式

github - 使用另一个存储库的 github 操作工作流文件

docker - 每个命令都会导致 fatal error : runtime: out of me

.htaccess - 使用指向 page.php 的 1 个参数编写干净的 URLS

python - 如何在 Python 中删除 .txt 文件的前几行?

javascript - 浏览器客户端如何在没有像 Apollo 或 Relay 这样的库的情况下使