Changeset 1891


Ignore:
Timestamp:
04/18/12 10:23:39 (12 years ago)
Author:
herste
Message:

new crontab script

Location:
vlo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/pom.xml

    r1854 r1891  
    88    <name>Virtual Language Observatory (parent pom)</name>
    99    <packaging>pom</packaging>
    10     <version>2.6</version>
     10    <version>2.7</version>
    1111    <description>Parent pom for the whole vlo project (in order to be able to do fancy packaging.</description>
    1212
  • vlo/trunk/src/main/assembly/installPackageBuilder.xml

    r1886 r1891  
    1616    <id>Distribution</id>
    1717    <formats>
    18         <format>dir</format>
     18        <format>tar.gz</format>
    1919    </formats>
    20     <includeBaseDirectory>false</includeBaseDirectory>
     20    <includeBaseDirectory>true</includeBaseDirectory>
    2121    <fileSets>
    2222<!-- DOCS -->
     
    118118            <directory>vlo_solr/target/vlo_solr-1.4.2-vlo_solr_conf</directory>
    119119            <includes>
    120                 <include>solr</include>
     120                <include>**/*</include>
    121121            </includes>
    122122            <outputDirectory>config/solr/solrconfig</outputDirectory>
  • vlo/trunk/vlo_webapp/pom.xml

    r1856 r1891  
    55    <artifactId>vlo</artifactId>
    66    <packaging>${packaging}</packaging>
    7     <version>2.5-SNAPSHOT</version>
     7    <version>2.7</version>
    88    <name>VirtualLanguageObservatory</name>
    99    <description></description>
  • vlo/trunk/vlo_webapp/src/main/bin/vlo_solr_importer.sh

    r1884 r1891  
    11#!/bin/sh
    22
    3 # This means it the script only works started from the bin directory, 
     3# This means it the script only works started from the bin directory,
    44# adjust the workdir if you installed this somewhere and want to run it from anywhere.
    5 WORKDIR=.
    6 LIB=../share
    7 CLASSPATH=.
    85
    96# Filter of the Error stream from which to prevent the admins from getting daily "can't find java" emails
     
    1411fi
    1512
    16 for f in `ls $WORKDIR/*.properties`
    17 do
    18     CLASSPATH=$CLASSPATH:$WORKDIR/$f
    19 done
    2013
    21 for f in `ls $WORKDIR/*.xml`
    22 do
    23     CLASSPATH=$CLASSPATH:$WORKDIR/$f
    24 done
    25 
    26 for f in `ls $LIB`
    27 do
    28         CLASSPATH=$CLASSPATH:$LIB/$f
    29 done
    30 
    31 #echo $CLASSPATH
    32 
    33 $JAVA -Xmx1024M -cp $CLASSPATH eu.clarin.cmdi.vlo.importer.MetadataImporter "$@"
     14$JAVA -Xmx1024M -cp . -jar *.jar eu.clarin.cmdi.vlo.importer.MetadataImporter
Note: See TracChangeset for help on using the changeset viewer.