java/jdbc-loopback-driver/nbproject/project.properties
author František Kučera <franta-hg@frantovo.cz>
Fri, 04 Apr 2014 23:40:28 +0200
branchv_0
changeset 171 701ec4db43fb
permissions -rw-r--r--
JDBC loopback driver: first version
experimental JDBC driver which does not need any real SQL database,
just passes values of statement parameters as a result set.
The first parameter is column count, then follows column names and then data.

Example:

2 a b c d e f

will result into table:

a | b
-----
c | d
e | f
franta-hg@171
     1
annotation.processing.enabled=true
franta-hg@171
     2
annotation.processing.enabled.in.editor=false
franta-hg@171
     3
annotation.processing.processors.list=
franta-hg@171
     4
annotation.processing.run.all.processors=true
franta-hg@171
     5
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
franta-hg@171
     6
application.title=jdbc-loopback-driver
franta-hg@171
     7
application.vendor=fiki
franta-hg@171
     8
build.classes.dir=${build.dir}/classes
franta-hg@171
     9
build.classes.excludes=**/*.java,**/*.form
franta-hg@171
    10
# This directory is removed when the project is cleaned:
franta-hg@171
    11
build.dir=build
franta-hg@171
    12
build.generated.dir=${build.dir}/generated
franta-hg@171
    13
build.generated.sources.dir=${build.dir}/generated-sources
franta-hg@171
    14
# Only compile against the classpath explicitly listed here:
franta-hg@171
    15
build.sysclasspath=ignore
franta-hg@171
    16
build.test.classes.dir=${build.dir}/test/classes
franta-hg@171
    17
build.test.results.dir=${build.dir}/test/results
franta-hg@171
    18
# Uncomment to specify the preferred debugger connection transport:
franta-hg@171
    19
#debug.transport=dt_socket
franta-hg@171
    20
debug.classpath=\
franta-hg@171
    21
    ${run.classpath}
franta-hg@171
    22
debug.test.classpath=\
franta-hg@171
    23
    ${run.test.classpath}
franta-hg@171
    24
# Files in build.classes.dir which should be excluded from distribution jar
franta-hg@171
    25
dist.archive.excludes=
franta-hg@171
    26
# This directory is removed when the project is cleaned:
franta-hg@171
    27
dist.dir=dist
franta-hg@171
    28
dist.jar=${dist.dir}/jdbc-loopback-driver.jar
franta-hg@171
    29
dist.javadoc.dir=${dist.dir}/javadoc
franta-hg@171
    30
endorsed.classpath=
franta-hg@171
    31
excludes=
franta-hg@171
    32
includes=**
franta-hg@171
    33
jar.compress=false
franta-hg@171
    34
javac.classpath=
franta-hg@171
    35
# Space-separated list of extra javac options
franta-hg@171
    36
javac.compilerargs=
franta-hg@171
    37
javac.deprecation=false
franta-hg@171
    38
javac.processorpath=\
franta-hg@171
    39
    ${javac.classpath}
franta-hg@171
    40
javac.source=1.7
franta-hg@171
    41
javac.target=1.7
franta-hg@171
    42
javac.test.classpath=\
franta-hg@171
    43
    ${javac.classpath}:\
franta-hg@171
    44
    ${build.classes.dir}
franta-hg@171
    45
javac.test.processorpath=\
franta-hg@171
    46
    ${javac.test.classpath}
franta-hg@171
    47
javadoc.additionalparam=
franta-hg@171
    48
javadoc.author=false
franta-hg@171
    49
javadoc.encoding=${source.encoding}
franta-hg@171
    50
javadoc.noindex=false
franta-hg@171
    51
javadoc.nonavbar=false
franta-hg@171
    52
javadoc.notree=false
franta-hg@171
    53
javadoc.private=false
franta-hg@171
    54
javadoc.splitindex=true
franta-hg@171
    55
javadoc.use=true
franta-hg@171
    56
javadoc.version=false
franta-hg@171
    57
javadoc.windowtitle=
franta-hg@171
    58
meta.inf.dir=${src.dir}/META-INF
franta-hg@171
    59
mkdist.disabled=true
franta-hg@171
    60
platform.active=default_platform
franta-hg@171
    61
run.classpath=\
franta-hg@171
    62
    ${javac.classpath}:\
franta-hg@171
    63
    ${build.classes.dir}
franta-hg@171
    64
# Space-separated list of JVM arguments used when running the project.
franta-hg@171
    65
# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value.
franta-hg@171
    66
# To set system properties for unit tests define test-sys-prop.name=value:
franta-hg@171
    67
run.jvmargs=
franta-hg@171
    68
run.test.classpath=\
franta-hg@171
    69
    ${javac.test.classpath}:\
franta-hg@171
    70
    ${build.test.classes.dir}
franta-hg@171
    71
source.encoding=UTF-8
franta-hg@171
    72
src.conf.dir=conf
franta-hg@171
    73
src.dir=src
franta-hg@171
    74
test.src.dir=test