Last change
on this file since 28 was
26,
checked in by fmguler, 14 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
|
Rev | Line | |
---|
[22] | 1 | annotation.processing.enabled=true |
---|
| 2 | annotation.processing.enabled.in.editor=false |
---|
| 3 | annotation.processing.run.all.processors=true |
---|
[11] | 4 | application.args= |
---|
| 5 | application.title=fmgVen |
---|
| 6 | application.vendor=fmguler |
---|
| 7 | build.classes.dir=${build.dir}/classes |
---|
| 8 | build.classes.excludes=**/*.java,**/*.form |
---|
| 9 | # This directory is removed when the project is cleaned: |
---|
| 10 | build.dir=build |
---|
| 11 | build.generated.dir=${build.dir}/generated |
---|
[19] | 12 | build.generated.sources.dir=${build.dir}/generated-sources |
---|
[11] | 13 | # Only compile against the classpath explicitly listed here: |
---|
| 14 | build.sysclasspath=ignore |
---|
| 15 | build.test.classes.dir=${build.dir}/test/classes |
---|
| 16 | build.test.results.dir=${build.dir}/test/results |
---|
| 17 | debug.classpath=\ |
---|
| 18 | ${run.classpath} |
---|
| 19 | debug.test.classpath=\ |
---|
| 20 | ${run.test.classpath} |
---|
| 21 | # This directory is removed when the project is cleaned: |
---|
| 22 | dist.dir=dist |
---|
| 23 | dist.jar=${dist.dir}/fmgVen.jar |
---|
| 24 | dist.javadoc.dir=${dist.dir}/javadoc |
---|
[22] | 25 | endorsed.classpath= |
---|
[11] | 26 | excludes= |
---|
| 27 | includes=** |
---|
| 28 | jar.compress=false |
---|
| 29 | javac.classpath=\ |
---|
[23] | 30 | ${libs.Ven.classpath} |
---|
[11] | 31 | # Space-separated list of extra javac options |
---|
[26] | 32 | javac.compilerargs= |
---|
[11] | 33 | javac.deprecation=false |
---|
[22] | 34 | javac.processorpath=\ |
---|
| 35 | ${javac.classpath} |
---|
[11] | 36 | javac.source=1.4 |
---|
| 37 | javac.target=1.4 |
---|
| 38 | javac.test.classpath=\ |
---|
| 39 | ${javac.classpath}:\ |
---|
| 40 | ${build.classes.dir}:\ |
---|
[24] | 41 | ${libs.junit.classpath}:\ |
---|
| 42 | ${libs.Test.classpath} |
---|
[11] | 43 | javadoc.additionalparam= |
---|
| 44 | javadoc.author=false |
---|
| 45 | javadoc.encoding= |
---|
| 46 | javadoc.noindex=false |
---|
| 47 | javadoc.nonavbar=false |
---|
| 48 | javadoc.notree=false |
---|
| 49 | javadoc.private=false |
---|
| 50 | javadoc.splitindex=true |
---|
| 51 | javadoc.use=true |
---|
| 52 | javadoc.version=false |
---|
| 53 | javadoc.windowtitle= |
---|
| 54 | meta.inf.dir=${src.dir}/META-INF |
---|
[26] | 55 | platform.active=JDK_1.4 |
---|
[11] | 56 | run.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): |
---|
| 62 | run.jvmargs= |
---|
| 63 | run.test.classpath=\ |
---|
| 64 | ${javac.test.classpath}:\ |
---|
[23] | 65 | ${build.test.classes.dir}:\ |
---|
| 66 | ${libs.Test.classpath} |
---|
[22] | 67 | source.encoding=UTF-8 |
---|
[11] | 68 | src.dir=src |
---|
| 69 | test.src.dir=test |
---|
[22] | 70 | project.license=ven-apache20 |
---|
Note: See
TracBrowser
for help on using the repository browser.