lint formatting fixes
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
##### Project:
|
||||
::PROJECTNAME
|
||||
##### Project
|
||||
|
||||
::PROJECT-NAME
|
||||
|
||||
##### Internal Release Number
|
||||
|
||||
##### Internal Release Number:
|
||||
::X.Y.Z
|
||||
|
||||
##### Related Documents:
|
||||
##### Related Documents
|
||||
|
||||
- [Design](Design) > Source Code Organization and Build System
|
||||
- ::[Example build.xml for Tomcat](http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/build.xml.txt)
|
||||
- ::[Apache Ant manual](http://ant.apache.org/manual/index)
|
||||
- ::LINKS TO RELEVANT STANDARDS
|
||||
- ::LINKS TO OTHER DOCUMENTS
|
||||
|
||||
---
|
||||
|
||||
### Overview
|
||||
@@ -20,6 +24,7 @@ delete text as needed. E.g., not all projects try to be platform
|
||||
independent.*
|
||||
|
||||
#### What are the most important facts that a developer should know about this source code organization and build system?
|
||||
|
||||
::It roughly follows the standard proposed in the Tomcat documentation
|
||||
and is very similar to the organization used on many open source
|
||||
projects at the Apache Software Foundation.
|
||||
@@ -58,7 +63,7 @@ overall structure or build process.*
|
||||
| ::build/ | ::No | ::Output of build process |
|
||||
| ::build/WEB-INF/classes/ | ::No | ::Compiled code output by build process |
|
||||
| ::dist/docs/api/ | ::No | ::API documentation output from build process |
|
||||
| ::dist/PROJECTNAME-VERSION.war | ::No | ::Deployable web archive of classes and config files generated by build process |
|
||||
| ::dist/PROJECT-NAME-VERSION.war | ::No | ::Deployable web archive of classes and config files generated by build process |
|
||||
|
||||
### Build Targets
|
||||
|
||||
@@ -68,11 +73,10 @@ development. The examples below should fit most projects.*
|
||||
| Target | Description |
|
||||
|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| ::compile = default | ::Compiles Java source code and creates .class files under the "build" directory. |
|
||||
| ::dist | ::Packages the system for distribution/deployment to servers or end users. Specifically, it creates .war archive of compiled classes and configuration files. |
|
||||
| ::install | ::Places executable code into location where it will actually be executed. Specifically, it copies .war file into Tomcat's webapps directory for use. You must then restart Tomcat or use the "reload" link in the Tomcat Manager. |
|
||||
| ::javadoc | ::Generates Java API documentation under "build/docs/api/". |
|
||||
| ::clean | ::Deletes files generated by previous build commands. Files under version control are not touched. |
|
||||
|
||||
| ::dist | ::Packages the system for distribution/deployment to servers or end users. Specifically, it creates .war archive of compiled classes and configuration files. |
|
||||
| ::install | ::Places executable code into location where it will actually be executed. Specifically, it copies .war file into Tomcat's webapps directory for use. You must then restart Tomcat or use the "reload" link in the Tomcat Manager. |
|
||||
| ::javadoc | ::Generates Java API documentation under "build/docs/api/". |
|
||||
| ::clean | ::Deletes files generated by previous build commands. Files under version control are not touched. |
|
||||
|
||||
### Build Configuration Options
|
||||
|
||||
|
Reference in New Issue
Block a user