gradle转maven
程序员文章站
2022-05-04 12:50:07
...
在build.gradle中增加以下内容
apply plugin: 'java'
apply plugin: 'maven'
task writeNewPom << {
pom {
project {
inceptionYear '2008'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
}
}.writeTo("$buildDir/pom.xml")
}
在idea上双击install
成功后将在build\poms目录下生成pom-default.xml文件,把它复制到根目录下,改名成pom.xml即可
编译出错情况
出现这种情况先在 build.gradle中增加
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
即可查看具体是那里出了问题
实在不行可以在出错类上加上@SuppressWarnings("unchecked")即可
上一篇: Maven笔记(转)
下一篇: SSM 框架 Maven项目整合实例