Ignore:
Timestamp:
May 3, 2011, 2:55:44 PM (12 years ago)
Author:
Nicklas Nordborg
Message:

References #304: Implement HDFS external file support

Re-packaging of extra JAR files since BASE now supports including them with the main JAR file (http://base.thep.lu.se/ticket/1594).

Location:
extensions/net.sf.basedb.hdfs/trunk
Files:
1 added
1 deleted
4 edited
3 copied

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.hdfs/trunk/.classpath

    r1353 r1358  
    33  <classpathentry kind="src" path="src"/>
    44  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    5   <classpathentry kind="lib" path="lib/hdfs/hadoop-common-0.21.0.jar"/>
    6   <classpathentry kind="lib" path="lib/hdfs/hadoop-hdfs-0.21.0.jar"/>
    75  <classpathentry kind="lib" path="lib/compile/base-core-3.0.0.jar"/>
     6  <classpathentry kind="lib" path="META-INF/lib/hadoop-common-0.21.0.jar"/>
     7  <classpathentry kind="lib" path="META-INF/lib/hadoop-hdfs-0.21.0.jar"/>
    88  <classpathentry kind="output" path="bin"/>
    99</classpath>
  • extensions/net.sf.basedb.hdfs/trunk/META-INF/MANIFEST.MF

    r1330 r1358  
    11Manifest-Version: 1.0
    2 Class-Path: lib/hdfs/hadoop-common-0.21.0.jar
    3  lib/hdfs/hadoop-hdfs-0.21.0.jar
     2Class-Path: lib/hadoop-common-0.21.0.jar
     3 lib/hadoop-hdfs-0.21.0.jar
  • extensions/net.sf.basedb.hdfs/trunk/README

    r1332 r1358  
    1616 1. Download the hdfs-*.tar.gz file.
    1717 2. Unpack the downloaded file to a directory of your choice.
    18  3. Copy the 'hdfs.jar' file and the 'lib' directory to your BASE plug-ins
    19     directory. Look in your 'base.config' file if you don't know where this is.
    20  4. Run the 'Extensions->Manual scan' command and install the new extension.
    21  5. Done.
     18 3. Copy the 'hdfs.jar' file to your BASE plug-ins directory. Look in your
     19    'base.config' file if you don't know where this is.
     20 4. Go to 'Administrate->Plug-ins & Extensions->Overview' page.
     21 5. Run the installation wizard and select to install 'hdfs.jar'.
     22 6. Done.
    2223
    2324 
  • extensions/net.sf.basedb.hdfs/trunk/build.xml

    r1353 r1358  
    3333  <path id="classpath">
    3434    <fileset dir="lib">
     35      <include name="**/*.jar" />
     36    </fileset>
     37    <fileset dir="META-INF/lib">
    3538      <include name="**/*.jar" />
    3639    </fileset>
     
    9699    <fail unless="base.plugins" message="base.plugins is not set to the path of BASE plug-ins directory." />
    97100    <copy todir="${base.plugins}">
    98       <fileset dir="." includes="lib/hdfs/*" />
    99101      <fileset file="${jar.name}" />
    100102    </copy>
    101     <echo>Copied '${jar.name}' and 'lib/hdfs/*' to '${base.plugins}'.</echo>
     103    <echo>Copied '${jar.name}' to '${base.plugins}'.</echo>
    102104  </target>
    103105 
Note: See TracChangeset for help on using the changeset viewer.