Skip to content

Commit 42dfd89

Browse files
authored
Add files via upload
1 parent add2471 commit 42dfd89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3768
-0
lines changed

build.xml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- You may freely edit this file. See commented blocks below for -->
3+
<!-- some examples of how to customize the build. -->
4+
<!-- (If you delete it and reopen the project it will be recreated.) -->
5+
<!-- By default, only the Clean and Build commands use this build script. -->
6+
<!-- Commands such as Run, Debug, and Test only use this build script if -->
7+
<!-- the Compile on Save feature is turned off for the project. -->
8+
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
9+
<!-- in the project's Project Properties dialog box.-->
10+
<project name="Software_Authenticator_Plus" default="default" basedir=".">
11+
<description>Builds, tests, and runs the project Software Authenticator Plus.</description>
12+
<import file="nbproject/build-impl.xml"/>
13+
<!--
14+
15+
There exist several targets which are by default empty and which can be
16+
used for execution of your tasks. These targets are usually executed
17+
before and after some main targets. They are:
18+
19+
-pre-init: called before initialization of project properties
20+
-post-init: called after initialization of project properties
21+
-pre-compile: called before javac compilation
22+
-post-compile: called after javac compilation
23+
-pre-compile-single: called before javac compilation of single file
24+
-post-compile-single: called after javac compilation of single file
25+
-pre-compile-test: called before javac compilation of JUnit tests
26+
-post-compile-test: called after javac compilation of JUnit tests
27+
-pre-compile-test-single: called before javac compilation of single JUnit test
28+
-post-compile-test-single: called after javac compilation of single JUunit test
29+
-pre-jar: called before JAR building
30+
-post-jar: called after JAR building
31+
-post-clean: called after cleaning build products
32+
33+
(Targets beginning with '-' are not intended to be called on their own.)
34+
35+
Example of inserting an obfuscator after compilation could look like this:
36+
37+
<target name="-post-compile">
38+
<obfuscate>
39+
<fileset dir="${build.classes.dir}"/>
40+
</obfuscate>
41+
</target>
42+
43+
For list of available properties check the imported
44+
nbproject/build-impl.xml file.
45+
46+
47+
Another way to customize the build is by overriding existing main targets.
48+
The targets of interest are:
49+
50+
-init-macrodef-javac: defines macro for javac compilation
51+
-init-macrodef-junit: defines macro for junit execution
52+
-init-macrodef-debug: defines macro for class debugging
53+
-init-macrodef-java: defines macro for class execution
54+
-do-jar-with-manifest: JAR building (if you are using a manifest)
55+
-do-jar-without-manifest: JAR building (if you are not using a manifest)
56+
run: execution of project
57+
-javadoc-build: Javadoc generation
58+
test-report: JUnit report generation
59+
60+
An example of overriding the target for project execution could look like this:
61+
62+
<target name="run" depends="Software_Authenticator_Plus-impl.jar">
63+
<exec dir="bin" executable="launcher.exe">
64+
<arg file="${dist.jar}"/>
65+
</exec>
66+
</target>
67+
68+
Notice that the overridden target depends on the jar target and not only on
69+
the compile target as the regular run target does. Again, for a list of available
70+
properties which you can use, check the target you are overriding in the
71+
nbproject/build-impl.xml file.
72+
73+
-->
74+
</project>

build/built-jar.properties

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Sun, 19 May 2013 11:54:27 +0200
2+
3+
4+
C\:\\Users\\steve\\Google\ Drive\\My\ Documents\\NetBeansProjects\\Software\ Authenticator\ Plus=

build/classes/Classes/AES.class

1.67 KB
Binary file not shown.
Binary file not shown.
3.54 KB
Binary file not shown.
3.22 KB
Binary file not shown.
1.73 KB
Binary file not shown.
6.52 KB
Binary file not shown.
700 Bytes
Binary file not shown.
910 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
4.27 KB
Binary file not shown.

build/classes/Fonts/digital.ttf

28.2 KB
Binary file not shown.

build/classes/Forms/Creation$1.class

810 Bytes
Binary file not shown.

build/classes/Forms/Creation$10.class

1001 Bytes
Binary file not shown.
672 Bytes
Binary file not shown.

build/classes/Forms/Creation$11.class

781 Bytes
Binary file not shown.

build/classes/Forms/Creation$2.class

720 Bytes
Binary file not shown.

build/classes/Forms/Creation$3.class

720 Bytes
Binary file not shown.

build/classes/Forms/Creation$4.class

679 Bytes
Binary file not shown.

build/classes/Forms/Creation$5.class

679 Bytes
Binary file not shown.

build/classes/Forms/Creation$6.class

720 Bytes
Binary file not shown.

build/classes/Forms/Creation$7.class

720 Bytes
Binary file not shown.

build/classes/Forms/Creation$8.class

720 Bytes
Binary file not shown.

build/classes/Forms/Creation$9.class

999 Bytes
Binary file not shown.

build/classes/Forms/Creation.class

14.1 KB
Binary file not shown.

build/classes/Forms/Main$1.class

664 Bytes
Binary file not shown.

build/classes/Forms/Main$2.class

660 Bytes
Binary file not shown.

build/classes/Forms/Main$3.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$4.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$5.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$6.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$7.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$8.class

692 Bytes
Binary file not shown.

build/classes/Forms/Main$9.class

1.35 KB
Binary file not shown.
1.53 KB
Binary file not shown.

build/classes/Forms/Main.class

16.1 KB
Binary file not shown.

build/classes/Images/Icon-Dock.png

86.3 KB

build/classes/Images/Icon-mini.png

5.15 KB

build/classes/Images/LCD.png

6.36 KB

build/classes/Images/Thumbs.db

102 KB
Binary file not shown.

dist/README.TXT

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
========================
2+
BUILD OUTPUT DESCRIPTION
3+
========================
4+
5+
When you build an Java application project that has a main class, the IDE
6+
automatically copies all of the JAR
7+
files on the projects classpath to your projects dist/lib folder. The IDE
8+
also adds each of the JAR files to the Class-Path element in the application
9+
JAR files manifest file (MANIFEST.MF).
10+
11+
To run the project from the command line, go to the dist folder and
12+
type the following:
13+
14+
java -jar "Software_Authenticator_Plus.jar"
15+
16+
To distribute this project, zip up the dist folder (including the lib folder)
17+
and distribute the ZIP file.
18+
19+
Notes:
20+
21+
* If two JAR files on the project classpath have the same name, only the first
22+
JAR file is copied to the lib folder.
23+
* Only JAR files are copied to the lib folder.
24+
If the classpath contains other types of files or folders, these files (folders)
25+
are not copied.
26+
* If a library on the projects classpath also has a Class-Path element
27+
specified in the manifest,the content of the Class-Path element has to be on
28+
the projects runtime path.
29+
* To set a main class in a standard Java project, right-click the project node
30+
in the Projects window and choose Properties. Then click Run and enter the
31+
class name in the Main Class field. Alternatively, you can manually type the
32+
class name in the manifest Main-Class element.

dist/Software_Authenticator_Plus.jar

304 KB
Binary file not shown.

manifest.mf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
X-COMMENT: Main-Class will be added automatically by build
3+

0 commit comments

Comments
 (0)