Hsqldb-user Digest, Vol 159, Issue 1, java-modules

danap via Hsqldb-user <[email protected]> Sun, 24 Mar 2024 08:44:12 -0700
Newsgroups gmane.comp.java.hsqldb.user
Message-ID <[email protected]>
Hello,

Most development Environments/IDEs will allow you to
select resources for export for your build. See Properties
Export.

Manually as an example my project.

danap@gx520c:~/development/Java/Ajqvue$ cat ajqvue.mf
Manifest-Version: 3.1
Created-By: dp
Specification-Title: Ajqvue
Specification-Version: 3.4
Specification-Vender: Dandy Made Productions
Specification-URL: http://dandymadeproductions.com
Main-Class: com.dandymadeproductions.ajqvue.Ajqvue
Class-Path: lib/commons-net-ftp-3.6.jar lib/itextpdf-5.5.13.1.jar 
lib/hsqldb.jar
danap@gx520c:~/development/Java/Ajqvue$

danap@gx520c:~/development/Java/Ajqvue$ cat build.sh
jar cvfm Ajqvue.jar ajqvue.mf -C bin/ com /lib/hslqdb.jar docs/Manual 
docs/Release/*.html

With this the jar will include my source, bin, and the library 
hsqldb.jar,
the Manual folder and Release html files.

danap