Changeset 5573
- Timestamp:
- Aug 15, 2019, 9:14:24 AM (4 years ago)
- 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 6 6 A package for importing and handling releases from Reggie. 7 7 </description> 8 <version>1.5 -dev</version>8 <version>1.5</version> 9 9 <min-base-version>3.15.0</min-base-version> 10 10 <copyright>BASE development team</copyright> -
extensions/net.sf.basedb.relax/trunk/build.xml
r5507 r5573 10 10 <!-- variables used --> 11 11 <property name="name" value="relax" /> 12 <property name="version" value="1.5 -dev" />12 <property name="version" value="1.5" /> 13 13 <property name="src" location="src" description="Location of source files" /> 14 14 <property name="build" location="build" description="Location of compiled files" /> … … 45 45 <fileset dir="${build}" defaultexcludes="no" /> 46 46 <fileset dir="${dist}" defaultexcludes="no" /> 47 <fileset dir="lib /compile" includes="base-*.jar" />47 <fileset dir="lib" includes="base-*.jar" /> 48 48 <fileset file="${jar.name}" /> 49 49 <fileset file="${tar.name}" /> … … 142 142 <available classname="net.sf.basedb.clients.web.Base" 143 143 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." /> 146 146 <echo>Found all requried BASE core JAR files.</echo> 147 147 </target> -
extensions/net.sf.basedb.relax/trunk/resources/relax.js
r5286 r5573 4 4 var relax = {}; 5 5 6 relax.VERSION = '1.5 -dev';6 relax.VERSION = '1.5'; 7 7 8 8 -
extensions/net.sf.basedb.relax/trunk/src/net/sf/basedb/relax/Relax.java
r5286 r5573 44 44 The current version of this package. 45 45 */ 46 public static final String VERSION = "1.5 -dev";46 public static final String VERSION = "1.5"; 47 47 48 48 /**
Note: See TracChangeset
for help on using the changeset viewer.