Referencing libraries in an IDE-independant way using relative paths to the

'lib' directory so that build scripts can run on any platform and outside
  the IDE

committer: Jonathan Bernard <jdbernard@jdbernard-desktop.(none)>
This commit is contained in:
Jonathan Bernard 2008-08-30 00:29:22 -05:00
parent 0864b978e7
commit 34e52d78bf
5 changed files with 7 additions and 4 deletions

BIN
lib/appframework-1.0.3.jar Normal file

Binary file not shown.

BIN
lib/swing-worker-1.1.jar Normal file

Binary file not shown.

View File

@ -1,2 +1,2 @@
jaxws.endorsed.dir=C:\\Program Files\\NetBeans 6.1\\java2\\modules\\ext\\jaxws21\\api
user.properties.file=C:\\Documents and Settings\\jbernard\\.netbeans\\6.1\\build.properties
jaxws.endorsed.dir=/usr/local/netbeans-6.1/java2/modules/ext/jaxws21/api
user.properties.file=/home/jdbernard/.netbeans/6.1/build.properties

View File

@ -20,10 +20,13 @@ dist.dir=dist
dist.jar=${dist.dir}/TimeStamper.jar
dist.javadoc.dir=${dist.dir}/javadoc
excludes=
file.reference.appframework-1.0.3.jar=lib/appframework-1.0.3.jar
file.reference.swing-worker-1.1.jar=lib/swing-worker-1.1.jar
includes=**
jar.compress=false
javac.classpath=\
${libs.swing-app-framework.classpath}
${file.reference.appframework-1.0.3.jar}:\
${file.reference.swing-worker-1.1.jar}
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false

View File

@ -69,7 +69,7 @@ implements Application.ExitListener {
*/
@Override protected void startup() {
show(new TimeStamperView(this));
getMainFrame().setSize(300, 60);
getMainFrame().setSize(350, 60);
getApplication().addExitListener(this);
}