-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.properties
30 lines (25 loc) · 987 Bytes
/
build.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# The project name will be the name of the jar file.
project.name = jaligner
# Where source files are found
src.dir = ./src
# Classpath
class.path = ${classpath}:${java.home}/lib/javaws.jar
# Intermediate directory for building class files.
build.dir = ./bin
# Compiler options.
debug = on
optimize = on
deprecation = off
packagename = jaligner
# Javadoc options.
javadoc.dir = ./api
javadoc.style = jaligner.css
javadoc.author = true
javadoc.private = false
javadoc.use = true
javadoc.version = true
javadoc.window.title = JAligner
javadoc.doc.title = JAligner: Java implementation of Smith-Waterman for biological sequence alignment
javadoc.header = JAligner
javadoc.footer =
javadoc.bottom = <small>By: <a href="http://ahmedmoustafa.com/">Ahmed Moustafa</a> | <a href="http://github.com/ahmedmoustafa/JAligner/">JAligner</a> is licensed under <a href="http://www.opensource.org/licenses/gpl-license">The GNU General Public License (GPL)</a></small>