Changeset 35318


Ignore:
Timestamp:
2021-08-22T15:09:51+12:00 (3 years ago)
Author:
davidb
Message:

Giving this a small nudge down to the ant requirement being 1.8.1 or above. While is is not strictly correct, the release kit code is currently operating with 1.8.1 and so currently fails. In the next overnigt build we'll see if the force=true attributes in <copy> cause a problem (requiremeint 1.8.2) or if they are silently ignored

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r35317 r35318  
    1616  <!-- Need to be using ant v1.8.2+ to support the 'force="true"' attribute in the file <copy> flag -->
    1717  <antversion property="ant.version.running" /> 
    18   <fail message="Minimum of Ant v1.8.2 required to operate Greenstone3 (detected version ${ant.version.running})">
     18  <fail message="Minimum of Ant v1.8.1 required to operate Greenstone3 (detected version ${ant.version.running})">
    1919    <condition>     
    20       <not><antversion atleast="1.8.2" /></not>
     20      <not><antversion atleast="1.8.1" /></not>
    2121    </condition>
    2222  </fail>
     
    25242524      <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
    25252525      <env key="PATH" path="${tomcat.path}"/>
     2526      <!-- Based on:
     2527         https://jfrog.com/knowledge-base/tomcat-takes-forever-to-start-what-can-i-do/
     2528       consider controlling Tomcat to use the psuedo random number generator '/dev/urandom'
     2529       raher than the default '/dev/random' which while cryptographically stronger is
     2530       also slower when demand is high
     2531
     2532           -Djava.security.egd=file:/dev/urandom
     2533      -->
    25262534      <env key="CATALINA_OPTS" value="${catalina.opts}"/>
    25272535      <env key="CATALINA_HOME" value="${catalina.home}"/>
Note: See TracChangeset for help on using the changeset viewer.