Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
6603c1e8
Kaydet (Commit)
6603c1e8
authored
Ock 25, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
better classpath control for javac compile runs
setting ant's includeantruntime option makes builds more repeatable
üst
68e4de94
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
build.xml
qadevOOo/build.xml
+4
-2
build.xml
scripting/examples/java/build.xml
+3
-3
build.xml
scripting/java/build.xml
+2
-2
build.xml
swext/mediawiki/build.xml
+1
-1
No files found.
qadevOOo/build.xml
Dosyayı görüntüle @
6603c1e8
...
...
@@ -39,7 +39,8 @@
<!-- target for building the runner -->
<target
name=
"qadevOOo_runner_build"
>
<javac
srcdir=
"${qadevOOo.runner}"
destdir=
"${qadevOOo.class}"
includes=
"**/*.java"
debug=
"${debug}"
source=
"${build.source}"
>
<javac
srcdir=
"${qadevOOo.runner}"
destdir=
"${qadevOOo.class}"
includes=
"**/*.java"
debug=
"${debug}"
source=
"${build.source}"
includeantruntime=
"false"
>
<classpath>
<pathelement
location=
"${qadevOOo.class}"
/>
<fileset
dir=
"${qadevOOo.office_jars}"
>
...
...
@@ -55,7 +56,8 @@
<!-- target for building the tests -->
<target
name=
"qadevOOo_tests_build"
depends=
"qadevOOo_runner_build"
>
<javac
srcdir=
"${qadevOOo.tests}"
destdir=
"${qadevOOo.class}"
includes=
"**/*.java"
debug=
"${debug}"
source=
"${build.source}"
>
<javac
srcdir=
"${qadevOOo.tests}"
destdir=
"${qadevOOo.class}"
includes=
"**/*.java"
debug=
"${debug}"
source=
"${build.source}"
includeantruntime=
"false"
>
<classpath>
<pathelement
location=
"${qadevOOo.class}"
/>
<fileset
dir=
"${qadevOOo.office_jars}"
>
...
...
scripting/examples/java/build.xml
Dosyayı görüntüle @
6603c1e8
...
...
@@ -42,7 +42,7 @@
<mkdir
dir=
"${outdir}/HelloWorld"
/>
<javac
srcdir=
"HelloWorld"
destdir=
"${outdir}/HelloWorld"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includeantruntime=
"false"
debug=
"${debug}"
optimize=
"${optimize}"
deprecation=
"on"
/>
<copy
file=
"HelloWorld/HelloWorld.java"
todir=
"${outdir}/HelloWorld"
/>
...
...
@@ -64,7 +64,7 @@
<mkdir
dir=
"${outdir}/Highlight"
/>
<javac
srcdir=
"Highlight"
destdir=
"${outdir}/Highlight"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includeantruntime=
"false"
debug=
"${debug}"
optimize=
"${optimize}"
deprecation=
"on"
/>
<copy
file=
"Highlight/HighlightText.java"
todir=
"${outdir}/Highlight"
/>
...
...
@@ -86,7 +86,7 @@
<mkdir
dir=
"${outdir}/MemoryUsage"
/>
<javac
srcdir=
"MemoryUsage"
destdir=
"${outdir}/MemoryUsage"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includeantruntime=
"false"
debug=
"${debug}"
optimize=
"${optimize}"
deprecation=
"on"
/>
<copy
file=
"MemoryUsage/MemoryUsage.java"
todir=
"${outdir}/MemoryUsage"
/>
...
...
scripting/java/build.xml
Dosyayı görüntüle @
6603c1e8
...
...
@@ -102,7 +102,7 @@
<!-- ======================== Compile Classes ========================== -->
<target
name=
"compile"
depends=
"prepare, eval_environment"
>
<javac
srcdir=
"com"
destdir=
"${jardir}"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includes=
"**/*.java"
classpathref=
"idlclasspath"
includeantruntime=
"false"
debug=
"${debug}"
optimize=
"${optimize}"
deprecation=
"off"
>
<exclude
name=
"**/provider/javascript/*.java"
unless=
"with_rhino"
/>
<exclude
name=
"**/provider/beanshell/*.java"
unless=
"with_beanshell"
/>
...
...
@@ -110,7 +110,7 @@
</javac>
<javac
srcdir=
"Framework/"
destdir=
"${jardir}"
includes=
"**/*.java"
classpathref=
"idlclasspath"
debug=
"${debug}"
optimize=
"${optimize}"
deprecation=
"off"
>
optimize=
"${optimize}"
deprecation=
"off"
includeantruntime=
"false"
>
<compilerarg
value=
"-Xbootclasspath:${toString:my.bootstrap.classpath}"
/>
</javac>
</target>
...
...
swext/mediawiki/build.xml
Dosyayı görüntüle @
6603c1e8
...
...
@@ -72,7 +72,7 @@
<target
name=
"compile"
depends=
"init"
>
<javac
debug=
"${debug}"
debuglevel=
"lines,vars,source"
destdir=
"${classes}"
classpathref=
"classpath"
source=
"${sourcelevel}"
verbose=
"${verbose}"
>
source=
"${sourcelevel}"
verbose=
"${verbose}"
includeantruntime=
"false"
>
<src
path=
"src"
/>
</javac>
</target>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment