Changeset 5573


Ignore:
Timestamp:
Aug 15, 2019, 9:14:24 AM (4 years ago)
Author:
Nicklas Nordborg
Message:

Preparing to release Relax 1.5

Location:
extensions/net.sf.basedb.relax/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.relax/trunk/META-INF/extensions.xml

    r5507 r5573  
    66      A package for importing and handling releases from Reggie.
    77    </description>
    8     <version>1.5-dev</version>
     8    <version>1.5</version>
    99    <min-base-version>3.15.0</min-base-version>
    1010    <copyright>BASE development team</copyright>
  • extensions/net.sf.basedb.relax/trunk/build.xml

    r5507 r5573  
    1010  <!-- variables used -->
    1111  <property name="name" value="relax" />
    12   <property name="version" value="1.5-dev" />
     12  <property name="version" value="1.5" />
    1313  <property name="src" location="src" description="Location of source files" />
    1414  <property name="build" location="build" description="Location of compiled files" />
     
    4545      <fileset dir="${build}" defaultexcludes="no" />
    4646      <fileset dir="${dist}" defaultexcludes="no" />
    47       <fileset dir="lib/compile" includes="base-*.jar" />
     47      <fileset dir="lib" includes="base-*.jar" />
    4848      <fileset file="${jar.name}" />
    4949      <fileset file="${tar.name}" />
     
    142142    <available classname="net.sf.basedb.clients.web.Base"
    143143      classpathref="classpath" property="base-web" />
    144     <fail unless="base-core" message="Can't find base-core-${depend.base-version}.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." />
    145     <fail unless="base-web" message="Can't find base-webclient-${depend.base-version}.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." />
     144    <fail unless="base-core" message="Can't find base-core-${depend.base-version}.jar in ./lib. Try 'ant download-lib' to download the missing file." />
     145    <fail unless="base-web" message="Can't find base-webclient-${depend.base-version}.jar in ./lib. Try 'ant download-lib' to download the missing file." />
    146146    <echo>Found all requried BASE core JAR files.</echo>
    147147  </target>
  • extensions/net.sf.basedb.relax/trunk/resources/relax.js

    r5286 r5573  
    44  var relax = {};
    55 
    6   relax.VERSION = '1.5-dev';
     6  relax.VERSION = '1.5';
    77
    88 
  • extensions/net.sf.basedb.relax/trunk/src/net/sf/basedb/relax/Relax.java

    r5286 r5573  
    4444    The current version of this package.
    4545  */
    46   public static final String VERSION = "1.5-dev";
     46  public static final String VERSION = "1.5";
    4747 
    4848  /**
Note: See TracChangeset for help on using the changeset viewer.