Changeset 2875


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

Note: comment on revision 2874 is incorrect. Instead of the changes mentioned, the revision is about making the 'ghost' web application obsolete. Up to and including version 2.12, this web application served the purpose of making the configuration of the importer available to the web application. From version 2.13, the build process copies the necessary resources from the importer module to the web application. At this moment, only the cmdi2xhtml.xsl file is involved in this.

Please note that the installation instructions have been streamlined.

This revision includes the changes made to the importer.

File:
1 edited

Legend:

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

    r2768 r2875  
    3939            </resource>
    4040        </resources>
     41       
    4142        <plugins>
     43            <!-- add the remote resources plugin to make the cmdi2xhtml.xml
     44                 file available to the web application. For more information
     45                 on this plugin, please refer the Apache Maven Project website
     46            -->
     47            <plugin>
     48                <artifactId>maven-remote-resources-plugin</artifactId>
     49                <version>1.4</version>
     50                <executions>
     51                    <execution>
     52                        <goals>
     53                            <goal>bundle</goal>
     54                        </goals>
     55                    </execution>
     56                </executions>
     57                <configuration>
     58                    <includes>
     59                        <include>**/*.xsl</include>
     60                    </includes>
     61                </configuration>
     62            </plugin>
     63 
    4264            <plugin>
    4365                <groupId>org.apache.maven.plugins</groupId>
Note: See TracChangeset for help on using the changeset viewer.