Changeset 2876


Ignore:
Timestamp:
05/07/13 14:07:11 (11 years ago)
Author:
keeloo
Message:

This revision accompanies revision 2875; it includes the changes made to the web application.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo_web_app/pom.xml

    r2775 r2876  
    1414    </parent>
    1515
    16     <groupId>eu.clarin.cmdi</groupId> <!-- changed groupId from mpi to eu.clarin.cmdi -->
     16    <groupId>eu.clarin.cmdi</groupId>
    1717   
    1818    <artifactId>vlo_web_app</artifactId>
     
    8383            </plugin>
    8484           
     85           
     86            <plugin>
     87                <!-- add the remote resources plugin to obtain the cmdi2xhtml.xml
     88                     file from the vlo_importer module. For more information
     89                     on this plugin, please refer the Apache Maven Project website
     90                -->
     91                <groupId>org.apache.maven.plugins</groupId>
     92                <artifactId>maven-remote-resources-plugin</artifactId>
     93                <version>1.4</version>
     94                <configuration>
     95                    <resourceBundles>
     96                        <resourceBundle>eu.clarin.cmdi:vlo:${project.version}</resourceBundle>
     97                    </resourceBundles>
     98                </configuration>
     99                <executions>
     100                    <execution>
     101                        <goals>
     102                            <goal>process</goal>
     103                        </goals>
     104                    </execution>
     105                </executions>
     106            </plugin>
     107
    85108            <plugin>
    86109                <groupId>org.apache.maven.plugins</groupId>
     
    89112                <configuration>
    90113                    <failOnMissingWebXml>false</failOnMissingWebXml>
     114                   
     115                    <!-- Add the cmdi2xhtml file from the vlo_importer module
     116                         to the web application archive file. Please note that
     117                         the file will only be included in the archive: the file
     118                         will not show up in the web application module in the
     119                         Netbeans IDE.
     120                    -->
     121                   
     122                    <srcFiles>
     123                        <srcFile>${project.build.directory}/src/main/resources/cmdi2xhtml.xsl</srcFile>
     124                    </srcFiles>
    91125                </configuration>
    92126            </plugin>
Note: See TracChangeset for help on using the changeset viewer.