2
我正在使用swagger包來記錄我的dropwizard資源。以下是YAML文件如何使maven屬性可用於dropwizard yaml文件
swagger:
resourcePackage: "com..resources"
description: "<a href='http:/docsite/'>Workflow doc</a>"
version: ${project.version}
我要動態更新從POM文件中的正矢量號碼,我給了Maven的資源濾波嘗試
<resources>
<resource>
<directory>src/main/resources/docker</directory>
<filtering>true</filtering>
</resource>
</resources>
這不評價項目版本。我知道評估發生在項目/ target/classes中的文件中。
如何在我的yaml文件中使用這個maven屬性?
我也試過在我的應用程序班組長
SwaggerBundleConfiguration swaggerConfig = configuration.getSwaggerBundleConfiguration();
swaggerConfig.setVersion("${project.version}");
的follwing並改變資源濾波
但是,我看到