Changeset 1353 for extensions/net.sf.basedb.hdfs
- Timestamp:
- Apr 28, 2011, 8:33:04 AM (12 years ago)
- Location:
- extensions/net.sf.basedb.hdfs/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.hdfs/trunk/.classpath
r1330 r1353 5 5 <classpathentry kind="lib" path="lib/hdfs/hadoop-common-0.21.0.jar"/> 6 6 <classpathentry kind="lib" path="lib/hdfs/hadoop-hdfs-0.21.0.jar"/> 7 <classpathentry kind="lib" path="lib/compile/base-core-3.0.0 pre.jar"/>7 <classpathentry kind="lib" path="lib/compile/base-core-3.0.0.jar"/> 8 8 <classpathentry kind="output" path="bin"/> 9 9 </classpath> -
extensions/net.sf.basedb.hdfs/trunk/META-INF/extensions.xml
r1343 r1353 8 8 </description> 9 9 <version>1.0-dev</version> 10 <min-base-version>3.0 </min-base-version>10 <min-base-version>3.0.0</min-base-version> 11 11 <copyright>BASE development team</copyright> 12 12 <email>basedb-users@lists.sourceforge.net</email> -
extensions/net.sf.basedb.hdfs/trunk/build.xml
r1330 r1353 10 10 <!-- variables used --> 11 11 <property name="name" value="hdfs" /> 12 <property name="version" value="1.0 pre" />12 <property name="version" value="1.0-dev" /> 13 13 <property name="src" location="src" description="Location of source files" /> 14 14 <property name="build" location="build" description="Location of compiled files" /> … … 21 21 <property name="javac.target" value="1.6" /> 22 22 <property name="javac.encoding" value="UTF-8" /> 23 <property name="depend.base-version" 24 value="3.0.0" 25 description="The BASE version that this project depends on." 26 /> 23 27 <property name="depend.jars" 24 value="http://base2.thep.lu.se/base/jars/ 3.0.0"25 description="The location of the BASE core JARs that we depend on"28 value="http://base2.thep.lu.se/base/jars/${depend.base-version}" 29 description="The location of the BASE core JARs that this project depends on." 26 30 /> 27 31 … … 90 94 depends="build" 91 95 > 92 <fail unless="base. home" message="base.home is not set to the path of BASE installation." />93 <copy todir="${base. home}/www/WEB-INF/extensions">96 <fail unless="base.plugins" message="base.plugins is not set to the path of BASE plug-ins directory." /> 97 <copy todir="${base.plugins}"> 94 98 <fileset dir="." includes="lib/hdfs/*" /> 95 99 <fileset file="${jar.name}" /> 96 100 </copy> 97 101 <echo>Copied '${jar.name}' and 'lib/hdfs/*' to '${base.plugins}'.</echo> 98 102 </target> 99 103 … … 127 131 <target 128 132 name="checkjar" 129 description="Checks that the base-core- 3.x.jar exists."133 description="Checks that the base-core-${depend.base-version}.jar exists." 130 134 > 131 135 <available classname="net.sf.basedb.core.Application" 132 classpathref="classpath" property="base 2core" />136 classpathref="classpath" property="base-core" /> 133 137 134 <fail unless="base 2core" message="Can't find base-core-3.x.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." />135 <echo>Found base-core- 3.x.jar.</echo>138 <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." /> 139 <echo>Found base-core-${depend.base-version}.jar.</echo> 136 140 </target> 137 141 138 142 <target 139 143 name="download-lib" 140 description="Download base-core- 3.x.jar."144 description="Download base-core-${depend.base-version}.jar." 141 145 > 142 146 <echo> … … 147 151 ------------------------------------------------------- 148 152 </echo> 149 <download-lib file="base-core- 3.0.0.jar" />153 <download-lib file="base-core-${depend.base-version}.jar" /> 150 154 </target> 151 155 … … 181 185 encoding="UTF-8" 182 186 /> 183 187 <replaceregexp 188 file="META-INF/extensions.xml" 189 match="<min-base-version>.*</min-base-version>" 190 replace="<min-base-version>${depend.base-version}</min-base-version>" 191 encoding="UTF-8" 192 /> 193 184 194 <echo>Don't forget to commit the changes to the subversion repository!</echo> 185 195 </target> -
extensions/net.sf.basedb.hdfs/trunk/src/net/sf/basedb/hdfs/Hdfs.java
r1330 r1353 32 32 The current version of this package. 33 33 */ 34 public static final String VERSION = "1.0 pre";34 public static final String VERSION = "1.0-dev"; 35 35 36 36 /**
Note: See TracChangeset
for help on using the changeset viewer.