forked from pool/apache-commons-validator
OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-commons-validator?expand=0&rev=19
This commit is contained in:
51
commons-validator-1.5.0-srcencoding.patch
Normal file
51
commons-validator-1.5.0-srcencoding.patch
Normal file
@@ -0,0 +1,51 @@
|
||||
--- commons-validator-1.5.0-src/build.xml 2015-11-19 00:52:34.000000000 +0100
|
||||
+++ commons-validator-1.5.0-src/build.xml 2018-12-21 10:48:58.650031637 +0100
|
||||
@@ -209,6 +209,7 @@
|
||||
description="Compile shareable components">
|
||||
<javac srcdir="${source.home}"
|
||||
destdir="${build.home}/classes"
|
||||
+ encoding="utf-8"
|
||||
source="${compile.source}"
|
||||
target="${compile.target}"
|
||||
debug="${compile.debug}"
|
||||
@@ -247,8 +248,10 @@
|
||||
|
||||
<target name="javadoc" depends="compile"
|
||||
description="Create component Javadoc documentation">
|
||||
- <!--javadoc sourcepath="${source.home}"
|
||||
+ <javadoc sourcepath="${source.home}"
|
||||
destdir="${dist.home}/docs/apidocs"
|
||||
+ encoding="utf-8"
|
||||
+ source="${compile.source}"
|
||||
packagenames="org.apache.commons.*"
|
||||
author="true"
|
||||
private="true"
|
||||
@@ -256,7 +259,7 @@
|
||||
doctitle="<h1>${component.title} (Version ${component.version})</h1>"
|
||||
windowtitle="${component.title} (Version ${component.version})"
|
||||
bottom="Copyright (c) 2001-2004 Apache Software Foundation"
|
||||
- classpathref="compile.classpath" / -->
|
||||
+ classpathref="compile.classpath"/>
|
||||
</target>
|
||||
|
||||
|
||||
@@ -312,6 +315,9 @@
|
||||
description="Compile unit test cases">
|
||||
<javac srcdir="${test.home}/java"
|
||||
destdir="${build.home}/tests"
|
||||
+ encoding="utf-8"
|
||||
+ source="${compile.source}"
|
||||
+ target="${compile.target}"
|
||||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
optimize="${compile.optimize}">
|
||||
@@ -394,6 +400,9 @@
|
||||
description="Compile example application">
|
||||
<javac srcdir="${example.home}"
|
||||
destdir="${build.home}/example"
|
||||
+ encoding="utf-8"
|
||||
+ source="${compile.source}"
|
||||
+ target="${compile.target}"
|
||||
debug="${compile.debug}"
|
||||
deprecation="${compile.deprecation}"
|
||||
optimize="${compile.optimize}">
|
||||
Reference in New Issue
Block a user