Changeset 3147


Ignore:
Timestamp:
07/17/13 13:12:48 (11 years ago)
Author:
keeloo
Message:

Modifications aiming at making importer resources files available outside jar or war files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/src/main/assembly/installPackageBuilder.xml

    r2883 r3147  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <!-- Provides a pretty Assembly output.
    3     According to the official MPI packaging scheme (as mandated by the application managers).
    4     It aims at the following structure:
    5     /vlo-${VERSION}
    6         /doc
    7         /bin/importer (importer-stuff here)
    8         /config (all config stuff here)
    9             /solr (the solr config directory
    10             /vlo (the vlo context fragment with which parameters to use)
    11         /war
    12             /solr (the solr war)
    13             /vlo (the vlo war)
    14 -->
     2
     3<!-- vlo package definition -->
     4
    155<assembly>
    166    <id>Distribution</id>
     
    2111    <fileSets>
    2212
    23 <!-- DOCS -->
     13        <!-- documentation to be packaged -->
    2414        <fileSet>
    2515            <directory>docs</directory>
     
    5141            <outputDirectory>doc/vlosolr</outputDirectory>
    5242        </fileSet>
    53 <!-- IMPORTER -->
    54         <!-- Jar File -->
     43
     44        <!-- importer related files to be packaged -->
     45        <!-- jar file -->
    5546        <fileSet>
    5647            <directory>vlo_importer/target</directory>
     
    7162        <!-- config files -->
    7263        <fileSet>
    73             <directory>vlo_importer/src/main/bin</directory>
     64            <directory>vlo_importer/src/main/resources</directory>
    7465            <includes>
    7566                <include>*.properties</include>
     67                <include>*.xml</include>
     68                <include>*.xsl</include>
    7669            </includes>
    7770            <outputDirectory>bin</outputDirectory>
    7871        </fileSet>
    7972
    80 <!-- WEB APPLICATION -->
    81         <!-- WAR FILE -->
     73        <!-- the web application files to be packaged -->
     74        <!-- war file -->
    8275        <fileSet>
    8376            <directory>vlo_web_app/target</directory>
     
    8982        <!-- config -->
    9083        <fileSet>
    91             <directory>vlo_web_app/src/main/resources</directory>
     84            <directory>vlo_importer/src/main/resources</directory>
    9285            <includes>
    9386                <include>VloConfig.xml</include>
     
    9689        </fileSet>
    9790
    98 <!-- SOLR SERVER -->
    99         <!-- SOLR WAR FILE -->
     91        <!-- solr server files to be packaged -->
     92        <!-- war file -->
    10093        <fileSet>
    10194            <directory>vlo_solr/target</directory>
     
    10699        </fileSet>
    107100
    108         <!-- SOLR CONFIG -->
     101        <!-- solr configuration files -->
    109102        <fileSet>
    110103            <directory>vlo_solr/target/vlo_solr-3.6.0-vlo_solr_conf</directory>
Note: See TracChangeset for help on using the changeset viewer.