Changeset 2658


Ignore:
Timestamp:
03/06/13 15:38:13 (11 years ago)
Author:
keeloo
Message:

Repaired the packaging. Still need to check the contents of the new
package, compare it with the old one, and test both the web
application and the importer by installing them outside the Netbeans
environment.

Location:
vlo/branches/vlo-2.13-param/vlo_web_app
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-2.13-param/vlo_web_app/pom.xml

    r2651 r2658  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     2<project xmlns="http://maven.apache.org/POM/4.0.0"
     3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
     5>
     6   
    37    <modelVersion>4.0.0</modelVersion>
     8   
    49    <parent>
    5     <artifactId>vlo_parent</artifactId>
    6     <groupId>eu.clarin.cmdi</groupId>
    7     <version>2.13</version>
    8   </parent>
     10        <artifactId>vlo_parent</artifactId>
     11        <groupId>eu.clarin.cmdi</groupId>
     12        <version>2.13</version>
     13    </parent>
    914
    1015    <groupId>mpi</groupId>
     16   
    1117    <artifactId>vlo_web_app</artifactId>
    12     <version>1.0-SNAPSHOT</version>
     18   
     19    <version>2.13</version>
     20   
    1321    <packaging>war</packaging>
    1422
     
    4755                <directory>src/main/java</directory>
    4856                <excludes>
    49                     <exclude>**/*.java</exclude>
     57                    <exclude>**/*.java</exclude> <!-- java not needed in the source -->
    5058                </excludes>
    5159            </resource>
  • vlo/branches/vlo-2.13-param/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/VloApplication.java

    r2651 r2658  
    7171        String fileName = VloConfig.class.getResource("/VloConfig.xml").getFile();
    7272       
     73        // configSource = getClass().getClassLoader().getResourceAsStream(fileName);
     74       
    7375        config = VloConfig.readConfig(fileName);
    7476
  • vlo/branches/vlo-2.13-param/vlo_web_app/src/main/resources/VloConfig.xml

    r2641 r2658  
    1 <webAppConfig>
     1<VloConfig>
    22   
    33    <deleteAllFirst>false</deleteAllFirst>
     
    6868   
    6969    <FederatedContentSearchUrl>http://weblicht.sfs.uni-tuebingen.de/Aggregator/</FederatedContentSearchUrl>
    70 </webAppConfig>
     70</VloConfig>
Note: See TracChangeset for help on using the changeset viewer.