最近与中科大合作接手了一个项目代码,是gradle工程,因公司项目构建工具都是maven,为了保持风格统一便于开发维护,需要将gradle项目转为maven.
其实配置也很简单,在build.gradle中添加如下配置
apply plugin: 'maven'task writeNewPom << { pom { project { inceptionYear '2018' 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 即可在当前项目中生成pom.xml文件。