Project

General

Profile

14875.diff

Galya B, 12/14/2023 10:30 AM

Download (1.88 KB)

View differences:

build.xml 2023-12-14 15:25:25 +0000
258 258
** 109 OM  20230510          Included schema/import.xml in jar to be accessible for at import time. 
259 259
**     RFB 20230831          Include new import.sh tool in the convert archive. Reformatted this header.
260 260
** 110 GBB 20231023          Adding new login and logout html resources.
261
** 111 GBB 20231023          Adding option to javadoc task to show all warnings.
261 262
-->
262 263

  
263 264
<!--
......
399 400
  <property name="compile.debug"       value="true"/>
400 401
  <property name="compile.deprecation" value="true"/>
401 402
  <property name="compile.optimize"    value="true"/>
402

  
403
   
403 404
  <!--
404 405
   propArg holds all the user properties in the format "-Dkey1=value1 -Dkey2=value2"
405 406
   and is passed to the gradlew executable as a command line argument
......
1800 1801
          unless="run-gradle-run"
1801 1802
          depends="ant-compile"
1802 1803
          description="Create Javadoc API documentation">
1804
     
1805
    <property name="javadoc.verbose" value="false"/>
1803 1806

  
1807
    <condition property="javadoc.lint.option" value="all" else="none" >
1808
       <istrue value="${javadoc.verbose}"/>
1809
    </condition>
1810
     
1804 1811
    <javadoc sourcepathref="javadoc.path"
1805 1812
             destdir="${dist.home}/docs/api"
1806 1813
             maxmemory="1g"
1807 1814
             access="private"
1808
             Footer="Copyright (c) 2004-2022, Golden Code Development
1815
             Footer="Copyright (c) 2004-2023, Golden Code Development
1809 1816
                     Corporation.&lt;br&gt;
1810 1817
                     ALL RIGHTS RESERVED. Use is subject to license terms."
1811 1818
             Windowtitle="P2J - Progress 4GL to Java Conversion and Runtime"
1812 1819
             locale="en_US"
1813 1820
             packagenames="*">
1814 1821

  
1822
      <arg value="-Xdoclint:${javadoc.lint.option}"/>
1815 1823
      <arg value="-Xmaxerrs"/>
1816 1824
      <arg value="10000"/>
1817 1825
      <arg value="-Xmaxwarns"/>