|
UtilJar Description This task JARs up source and/or build output of a Java project and places the JAR file in an Enterprise Application Project. Parameters
Examples <utilJar EARProjectName="EARProject" JavaProjectName="JProject" Jar="JProject.jar" IncludeSource="true"/> Exports the project "JProject" with source files to "JProject.jar" and places the JAR file in EARProject. <utilJar EARProjectName="EARProject" JavaProjectName="JProject" Jar="Jars/JProject.jar" IncludeBinary="true"/> Exports the project "JProject" with binary files to "JProject.jar" and places the JAR file in EARProject/Jars. <utilJar EARProjectName="EARProject" JavaProjecName="JProject" Jar="Jars/JProject.jar" IncludeBinary="true" IncludeSource="true"/> Exports the project "JProject" with binary and source files to "JProject.jar" and places the JAR file in EARProject/Jars. <utilJar EARProjectName="EARProject" JavaProjectName="JProject" Jar="Jars/JProject.jar" IncludeBinary="true" IncludeSource="true" IncludeNonJavaResources="true"/>Exports the project "JProject" with binary files,source files and non-java resources to "JProject.jar" and places the JAR file in EARProject/Jars. |