SlideShare a Scribd company logo
1 of 1
========================
BUILD OUTPUT DESCRIPTION
========================

When you build an Java application project that has a main class, the IDE
automatically copies all of the JAR
files on the projects classpath to your projects dist/lib folder. The IDE
also adds each of the JAR files to the Class-Path element in the application
JAR files manifest file (MANIFEST.MF).

To run the project from the command line, go to the dist folder and
type the following:

java -jar "prjSIFAC_v02.jar"

To distribute this project, zip up the dist folder (including the lib folder)
and distribute the ZIP file.

Notes:

* If two JAR files on the project classpath have the same name, only the first
JAR file is copied to the lib folder.
* Only JAR files are copied to the lib folder.
If the classpath contains other types of files or folders, these files (folders)
are not copied.
* If a library on the projects classpath also has a Class-Path element
specified in the manifest,the content of the Class-Path element has to be on
the projects runtime path.
* To set a main class in a standard Java project, right-click the project node
in the Projects window and choose Properties. Then click Run and enter the
class name in the Main Class field. Alternatively, you can manually type the
class name in the manifest Main-Class element.

More Related Content

Viewers also liked (18)

Economia en el porfiriato
Economia en el porfiriatoEconomia en el porfiriato
Economia en el porfiriato
 
La alimentación y la industrialización de la carne bovina y sus derivados
La alimentación y la industrialización de la carne bovina y sus derivadosLa alimentación y la industrialización de la carne bovina y sus derivados
La alimentación y la industrialización de la carne bovina y sus derivados
 
Eventos abril 2013
Eventos abril 2013Eventos abril 2013
Eventos abril 2013
 
Prueba de competencias las nieves 1
Prueba de competencias las nieves 1Prueba de competencias las nieves 1
Prueba de competencias las nieves 1
 
computacion
computacioncomputacion
computacion
 
Trabajo De Control De Lectura
Trabajo De Control De LecturaTrabajo De Control De Lectura
Trabajo De Control De Lectura
 
Lección 13 lengua
Lección 13 lenguaLección 13 lengua
Lección 13 lengua
 
Arbol genealogico
Arbol genealogicoArbol genealogico
Arbol genealogico
 
ANÁLISIS DAFO
ANÁLISIS DAFOANÁLISIS DAFO
ANÁLISIS DAFO
 
Red,LAN
Red,LANRed,LAN
Red,LAN
 
Imagenes 3d
Imagenes 3dImagenes 3d
Imagenes 3d
 
Técnica acuarela
Técnica acuarelaTécnica acuarela
Técnica acuarela
 
Noticia1 según la unesco
Noticia1 según la unescoNoticia1 según la unesco
Noticia1 según la unesco
 
Las palabras
Las palabrasLas palabras
Las palabras
 
Congreso
CongresoCongreso
Congreso
 
Contemporary photoalbum
Contemporary photoalbumContemporary photoalbum
Contemporary photoalbum
 
La Amistad
La AmistadLa Amistad
La Amistad
 
Cómo trabajar con pixton
Cómo trabajar con pixtonCómo trabajar con pixton
Cómo trabajar con pixton
 

Similar to Readme

Similar to Readme (20)

Unit4 java
Unit4 javaUnit4 java
Unit4 java
 
Packages
PackagesPackages
Packages
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDE
 
Build Scripts
Build ScriptsBuild Scripts
Build Scripts
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - Explained
 
Packages in java
Packages in javaPackages in java
Packages in java
 
Mavenppt
MavenpptMavenppt
Mavenppt
 
Idiomatic gradle plugin writing
Idiomatic gradle plugin writingIdiomatic gradle plugin writing
Idiomatic gradle plugin writing
 
Week 4 Individual Assignmentbuild.xml Builds, tests, a.docx
Week 4 Individual Assignmentbuild.xml      Builds, tests, a.docxWeek 4 Individual Assignmentbuild.xml      Builds, tests, a.docx
Week 4 Individual Assignmentbuild.xml Builds, tests, a.docx
 
JAVA_STEP_V7
JAVA_STEP_V7JAVA_STEP_V7
JAVA_STEP_V7
 
CommissionCalculationbuildclasses.netbeans_automatic_build.docx
CommissionCalculationbuildclasses.netbeans_automatic_build.docxCommissionCalculationbuildclasses.netbeans_automatic_build.docx
CommissionCalculationbuildclasses.netbeans_automatic_build.docx
 
20-packages-jar.ppt
20-packages-jar.ppt20-packages-jar.ppt
20-packages-jar.ppt
 
Jddk
JddkJddk
Jddk
 
packages.ppt
packages.pptpackages.ppt
packages.ppt
 
packages.ppt
packages.pptpackages.ppt
packages.ppt
 
Java package
Java packageJava package
Java package
 
packages in java & c++
packages in java & c++packages in java & c++
packages in java & c++
 
Android project architecture
Android project architectureAndroid project architecture
Android project architecture
 
Creating an executable jar file
Creating an executable jar fileCreating an executable jar file
Creating an executable jar file
 
Java packages oop
Java packages oopJava packages oop
Java packages oop
 

Readme

  • 1. ======================== BUILD OUTPUT DESCRIPTION ======================== When you build an Java application project that has a main class, the IDE automatically copies all of the JAR files on the projects classpath to your projects dist/lib folder. The IDE also adds each of the JAR files to the Class-Path element in the application JAR files manifest file (MANIFEST.MF). To run the project from the command line, go to the dist folder and type the following: java -jar "prjSIFAC_v02.jar" To distribute this project, zip up the dist folder (including the lib folder) and distribute the ZIP file. Notes: * If two JAR files on the project classpath have the same name, only the first JAR file is copied to the lib folder. * Only JAR files are copied to the lib folder. If the classpath contains other types of files or folders, these files (folders) are not copied. * If a library on the projects classpath also has a Class-Path element specified in the manifest,the content of the Class-Path element has to be on the projects runtime path. * To set a main class in a standard Java project, right-click the project node in the Projects window and choose Properties. Then click Run and enter the class name in the Main Class field. Alternatively, you can manually type the class name in the manifest Main-Class element.