Skip to content

Commit

Permalink
with dist
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarneiva committed Oct 26, 2019
1 parent e56fbda commit 94f2a6f
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
/dist/
/build/
2 changes: 1 addition & 1 deletion build/built-jar.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Thu, 24 Oct 2019 23:32:57 -0300
#Fri, 25 Oct 2019 00:55:54 -0300


C\:\\Users\\oscar\ neiva\\Desktop\\AmazingSort=
Binary file added build/classes/amazingsort/AmazingSort.class
Binary file not shown.
Binary file added dist/AmazingSort.jar
Binary file not shown.
32 changes: 32 additions & 0 deletions dist/README.TXT
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
========================
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 "AmazingSort.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.
1 change: 1 addition & 0 deletions dist/data/data.csv

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion nbproject/private/private.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/generator/Generator.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/algorithms/BubbleSort.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/algorithms/InsertionSort.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/algorithms/MergeSort.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/algorithms/SelectionSort.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/amazingsort/AmazingSort.java</file>
<file>file:/C:/Users/oscar%20neiva/Desktop/AmazingSort/src/algorithms/QuickSort.java</file>
</group>
</open-files>
</project-private>

0 comments on commit 94f2a6f

Please sign in to comment.