我是一个新人,在公司总是听他们说 把XX项目构建一下
像一个javaweb 程序 构建是不是就是把它发布到服务器上?
构建是什么意思呢?
业精于勤,荒于嬉;行成于思,毁于随。
A build usually has these two parts:
Compile: The source code is compiled into a binary document for future operation.
Packaging: Pack the compiled binary documents and some meta documents into a package in a certain format for future release and deployment.
Other on-demand services may include deployment and testing.
Build....
gradle build
For example, using maven to build a project means using maven's management module to generate some necessary components to save labor. http://www.w3cschool.cn/maven/
A build usually has these two parts:
Compile: The source code is compiled into a binary document for future operation.
Packaging: Pack the compiled binary documents and some meta documents into a package in a certain format for future release and deployment.
Other on-demand services may include deployment and testing.
Build....
gradle build
For example, using maven to build a project means using maven's management module to generate some necessary components to save labor.
http://www.w3cschool.cn/maven/