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-94f89814c4df
master
jensp 2013-09-02 09:35:40 +00:00
parent ffa311608f
commit 83b981d218
3 changed files with 7 additions and 2 deletions

View File

@ -2258,7 +2258,9 @@
deprecation="${{compile.deprecation}}" deprecation="${{compile.deprecation}}"
verbose="${{compile.verbose}}" verbose="${{compile.verbose}}"
nowarn="${{compile.nowarn}}" nowarn="${{compile.nowarn}}"
source="${{compile.source}}"
target="${{compile.target}}" target="${{compile.target}}"
encoding="${{compile.encoding}}"
destdir="{$destdir}" destdir="{$destdir}"
classpathref="{$classpathref}"> classpathref="{$classpathref}">
<src refid="{$srcpathref}"/> <src refid="{$srcpathref}"/>

View File

@ -45,10 +45,13 @@ compile.nowarn=on
# Optionally specifiy version of target JVM. # Optionally specifiy version of target JVM.
# By default the version of the build system is determined and used as target. # 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 # These properties are specific to Jikes
build.compiler.emacs=off build.compiler.emacs=off
build.compiler.pedantic=off build.compiler.pedantic=off
build.compiler.fulldepend=off build.compiler.fulldepend=off

View File

@ -38,7 +38,7 @@
<!-- Specifies the test application server runtime managed by build-runtime.xml <!-- Specifies the test application server runtime managed by build-runtime.xml
Provides app.server.*.dir props used by build-runtime and build-project --> 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" /> <property file="${ccm.ecdc.conf.dir}/runtime.properties" />
<!-- Specifies the compiler & build options and the junit test environment <!-- Specifies the compiler & build options and the junit test environment