我有一个 Gradle 项目,我需要将其所有依赖项转移并与另一个 Maven 项目一起使用。换句话说,我如何从 build.gradle 生成(或生成)pom.xml?
4 回答
从 Gradle 7 开始,当使用Gradle 的 Maven-Publish 插件时,publishToMavenLocal和publish会自动添加到您的任务中,调用其中任何一个都会生成一个 POM 文件。
因此,如果您的build.gradle文件如下所示:
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
runtimeOnly group: 'ch.qos.logback', name:'logback-classic', version:'1.2.3'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
// the GAV of the generated POM can be set here
publishing {
publications {
maven(MavenPublication) {
groupId = 'edu.bbte.gradleex.mavenplugin'
artifactId = 'gradleex-mavenplugin'
version = '1.0.0-SNAPSHOT'
from components.java
}
}
}
您可以gradle publishToLocalRepo
在其文件夹中调用,您会在build/publications/maven子文件夹中找到一个名为pom-default.xml的文件。此外,与 POM 一起构建的 JAR 将位于您的 Maven 本地存储库中。更确切地说gradle generatePomFileForMavenPublication
,如果您想省略发布到 Maven 本地存储库,则该任务会执行实际生成。
请注意,并非所有依赖项都显示在此处,因为 Gradle“配置”并不总是与 Maven“范围”一一对应。
因为我不想在我的本地仓库中安装任何东西,所以我在阅读文档后做了以下操作。添加你的 build.gradle
apply plugin: 'maven'
group = 'com.company.root'
// artifactId is taken by default, from folder name
version = '0.0.1-SNAPSHOT'
task writeNewPom << {
pom {
project {
inceptionYear '2014'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
}
}.writeTo("pom.xml")
}
运行它
gradle writeNewPom
@a_horse_with_no_name
用 groovy 制作的 gradle 可以在结束 } 项目块后尝试添加
build{
plugins{
plugin{
groupId 'org.apache.maven.plugins'
artifactId 'maven-compiler-plugin'
configuration{
source '1.8'
target '1.8'
}
}
}
}
没试过,瞎猜!
当您没有安装 gradle 时,“编写 gradle 任务来执行此操作”不是很有用。我没有使用依赖项安装这个 100MB 的野兽,而是制作了将 gradle 依赖项转换为 maven 依赖项的过滤器:
cat build.gradle\
| awk '{$1=$1};1'\
| grep -i "compile "\
| sed -e "s/^compile //Ig" -e "s/^testCompile //Ig"\
| sed -e "s/\/\/.*//g"\
| sed -e "s/files(.*//g"\
| grep -v ^$\
| tr -d "'"\
| sed -e "s/\([-_[:alnum:]\.]*\):\([-_[:alnum:]\.]*\):\([-+_[:alnum:]\.]*\)/<dependency>\n\t<groupId>\1<\/groupId>\n\t<artifactId>\2<\/artifactId>\n\t<version>\3<\/version>\n<\/dependency>/g"
这转换
compile 'org.slf4j:slf4j-api:1.7.+'
compile 'ch.qos.logback:logback-classic:1.1.+'
compile 'commons-cli:commons-cli:1.3'
进入
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.+</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.+</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.3</version>
</dependency>
pom.xml 的其余部分应手动创建。
最内置的解决方案可能是使用archiveTask
Maven 插件中的任务,它将poms
在构建目录的文件夹中生成一个 pom。http://www.gradle.org/docs/current/userguide/maven_plugin.html#sec:maven_pom_generation