一、gradle --> maven
在build.gradle中增加以下内容(group,version可自行修改,artifactId默认为目录名称)
plugins {
id 'java'
}
apply plugin: 'maven'
group 'com.lyh'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.15'
}
在Gradle项目根目录下执行 gradle install,我们会发现根目录的build文件夹下生成了一个poms文件夹里面有pom-default.xml文件。把它复制到根目录下,改名成pom.xml即可
然后执行mvn compile打包即可
使用maven的mvn compile编译过程中,出现如下警告:
[WARNING] File encoding has not been set, using platform encoding GBK, i.e. build is platform dependent!
解决:在pom.xml文件中配置:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
二、maven --> gradle
先保证本机安装了gradle 2.0以上的版本
然后在maven项目的根目录下运行
gradle init --type pom
然后重启idea重新打开项目,右下角会有弹窗提示创建gradle项目,点击创建即可,然后该项目即是maven又是gradle项目了