java项目问题。 ant工程怎样转换成maven工程?
PHPz
PHPz 2017-04-17 18:00:26
0
1
477

java项目问题。 ant工程怎样转换成maven工程?

PHPz
PHPz

学习是最好的投资!

reply all(1)
黄舟

There is no direct conversion tool for this, so to put it directly, you need to use your ant project file to build a maven project file, and the core of the maven project file is

src/main/java
src/main/resource
src/test/java
src/test/resource
pom.xml

1. First, you configure the jar package dependencies you previously managed using pom.xml.
2. Then configure some bean configurations or other configuration files in the resource.
3. Put the business code into java and debug it.

Hope it’s useful to you.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template