source: trunk/fmgVen/nbproject/project.properties @ 26

Last change on this file since 26 was 26, checked in by fmguler, 13 years ago

Refs #3 - Ven.save() is transferred to the new package. Save use case is completed. Convert.toDB() converts camel case object names to database names with underscores. Unchecked VenException is thrown by Ven methods. Liquibase changelog (test-db-changelog.xml) is changed to include only a simple object to test save operation. It creates a sample database table and inserts a sample row. On rollback it removes sample data. Using liquibase, Sample.java builds database, tests save operation and rolls back.

QueryGenerator generates insert and update queries for save and generates sequence query to assign ids to new objects. Ven calls query generator and runs the query using spring jdbc template.

Old codebase updated to run at Java 1.4

File size: 2.1 KB
Line 
1annotation.processing.enabled=true
2annotation.processing.enabled.in.editor=false
3annotation.processing.run.all.processors=true
4application.args=
5application.title=fmgVen
6application.vendor=fmguler
7build.classes.dir=${build.dir}/classes
8build.classes.excludes=**/*.java,**/*.form
9# This directory is removed when the project is cleaned:
10build.dir=build
11build.generated.dir=${build.dir}/generated
12build.generated.sources.dir=${build.dir}/generated-sources
13# Only compile against the classpath explicitly listed here:
14build.sysclasspath=ignore
15build.test.classes.dir=${build.dir}/test/classes
16build.test.results.dir=${build.dir}/test/results
17debug.classpath=\
18    ${run.classpath}
19debug.test.classpath=\
20    ${run.test.classpath}
21# This directory is removed when the project is cleaned:
22dist.dir=dist
23dist.jar=${dist.dir}/fmgVen.jar
24dist.javadoc.dir=${dist.dir}/javadoc
25endorsed.classpath=
26excludes=
27includes=**
28jar.compress=false
29javac.classpath=\
30    ${libs.Ven.classpath}
31# Space-separated list of extra javac options
32javac.compilerargs=
33javac.deprecation=false
34javac.processorpath=\
35    ${javac.classpath}
36javac.source=1.4
37javac.target=1.4
38javac.test.classpath=\
39    ${javac.classpath}:\
40    ${build.classes.dir}:\
41    ${libs.junit.classpath}:\
42    ${libs.Test.classpath}
43javadoc.additionalparam=
44javadoc.author=false
45javadoc.encoding=
46javadoc.noindex=false
47javadoc.nonavbar=false
48javadoc.notree=false
49javadoc.private=false
50javadoc.splitindex=true
51javadoc.use=true
52javadoc.version=false
53javadoc.windowtitle=
54meta.inf.dir=${src.dir}/META-INF
55platform.active=JDK_1.4
56run.classpath=\
57    ${javac.classpath}:\
58    ${build.classes.dir}
59# Space-separated list of JVM arguments used when running the project
60# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
61# or test-sys-prop.name=value to set system properties for unit tests):
62run.jvmargs=
63run.test.classpath=\
64    ${javac.test.classpath}:\
65    ${build.test.classes.dir}:\
66    ${libs.Test.classpath}
67source.encoding=UTF-8
68src.dir=src
69test.src.dir=test
70project.license=ven-apache20
Note: See TracBrowser for help on using the repository browser.