Fridrich Strba 2022-03-19 19:54:08 +00:00 committed by Git OBS Bridge
parent 8366d70f29
commit b5f0eff948
2 changed files with 6 additions and 6 deletions

View File

@ -17,12 +17,12 @@
<property name="build.finalName" value="${project.artifactId}-${project.version}"/> <property name="build.finalName" value="${project.artifactId}-${project.version}"/>
<property name="build.dir" value="target"/> <property name="build.dir" value="target"/>
<property name="build.outputDir" value="${build.dir}/classes"/> <property name="build.outputDir" value="${build.dir}/classes"/>
<property name="build.srcDir.0" value="src/main/java"/> <property name="build.srcDir" value="src/main/java"/>
<property name="build.resourceDir.0" value="src/main/resources"/> <property name="build.resourceDir" value="src/main/resources"/>
<property name="reporting.outputDirectory" value="${build.dir}/site"/> <property name="reporting.outputDirectory" value="${build.dir}/site"/>
<property name="compiler.source" value="1.6"/> <property name="compiler.source" value="1.8"/>
<property name="compiler.target" value="${compiler.source}"/> <property name="compiler.target" value="${compiler.source}"/>
<!-- ====================================================================== --> <!-- ====================================================================== -->
@ -49,7 +49,7 @@
fork="false" fork="false"
source="${compiler.source}"> source="${compiler.source}">
<src> <src>
<pathelement location="${build.srcDir.0}"/> <pathelement location="${build.srcDir}"/>
</src> </src>
</javac> </javac>
</target> </target>
@ -59,7 +59,7 @@
<!-- ====================================================================== --> <!-- ====================================================================== -->
<target name="javadoc" description="Generates the Javadoc of the application"> <target name="javadoc" description="Generates the Javadoc of the application">
<javadoc sourcepath="${build.srcDir.0}" <javadoc sourcepath="${build.srcDir}"
packagenames="*" packagenames="*"
destdir="${reporting.outputDirectory}/apidocs" destdir="${reporting.outputDirectory}/apidocs"
access="protected" access="protected"

View File

@ -1,7 +1,7 @@
# #
# spec file for package apiguardian # spec file for package apiguardian
# #
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2022 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed