我是Gradle的新手。因此,我的问题可能很简单,但在尝试将项目或工件部署到EAR包中时,无法找到重命名结果文件的方法。 我需要从文件名模板中删除版本名称。 例如:
dependencies {
earlib group: 'org.springframework', name: 'spring-aop', version:'3.2.0.RELEASE'
}
结果ear将文件 spring-aop-3.2.0.RELEASE.jar 包含到EAR中。 但我需要 spring-aop.jar 作为结果文件。
有没有earlib的财产呢?