Verschiedene Verbesserungen am Build-System, unter anderem wird das Encoding der Source-Dateien jetzt auf UTF-8 gesetzt um Probleme bei Kompilieren unter Betriebssystem zu vermeiden, die nicht UTF-8 als Standard-Encoding verwenden, z.B. Windows.
git-svn-id: https://svn.libreccm.org/ccm/trunk@2313 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
ffa311608f
commit
83b981d218
|
|
@ -2258,7 +2258,9 @@
|
|||
deprecation="${{compile.deprecation}}"
|
||||
verbose="${{compile.verbose}}"
|
||||
nowarn="${{compile.nowarn}}"
|
||||
source="${{compile.source}}"
|
||||
target="${{compile.target}}"
|
||||
encoding="${{compile.encoding}}"
|
||||
destdir="{$destdir}"
|
||||
classpathref="{$classpathref}">
|
||||
<src refid="{$srcpathref}"/>
|
||||
|
|
|
|||
|
|
@ -45,10 +45,13 @@ compile.nowarn=on
|
|||
|
||||
# Optionally specifiy version of target JVM.
|
||||
# By default the version of the build system is determined and used as target.
|
||||
#compile.target=1.6
|
||||
compile.source=1.6
|
||||
compile.target=1.6
|
||||
compile.encoding=UTF-8
|
||||
|
||||
# These properties are specific to Jikes
|
||||
build.compiler.emacs=off
|
||||
build.compiler.pedantic=off
|
||||
build.compiler.fulldepend=off
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
<!-- Specifies the test application server runtime managed by build-runtime.xml
|
||||
Provides app.server.*.dir props used by build-runtime and build-project -->
|
||||
<property file="${ccm.project.dir}/local.runtime.properties" />
|
||||
<property file="${ccm.project.dir}/local.runtime.properties.bak" />
|
||||
<property file="${ccm.ecdc.conf.dir}/runtime.properties" />
|
||||
|
||||
<!-- Specifies the compiler & build options and the junit test environment
|
||||
|
|
|
|||
Loading…
Reference in New Issue