Changeset 6630


Ignore:
Timestamp:
09/30/15 12:38:02 (9 years ago)
Author:
davor.ostojic@oeaw.ac.at
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.3-oeaw/pom.xml

    r6628 r6630  
    6969        </repository>
    7070    </repositories>
     71   
     72   
     73        <!-- transform csv to xml on every compile and copy them to the importer test resources -->
     74        <build>
     75                <plugins>
     76                        <plugin>
     77                        <artifactId>maven-resources-plugin</artifactId>
     78                        <version>2.7</version>
     79                        <executions>
     80                                <execution>
     81                                <id>copy-maps</id>
     82                                <phase>compile</phase>
     83                                <goals>
     84                                        <goal>copy-resources</goal>
     85                                </goals>
     86                                <configuration>
     87                                        <outputDirectory>${basedir}/vlo-importer/target/test-classes</outputDirectory>
     88                                        <resources>         
     89                                                <resource>
     90                                                        <directory>${basedir}/vlo-importer/maps/uniform_maps</directory>
     91                                                </resource>
     92                                        </resources>             
     93                                </configuration>           
     94                                </execution>
     95                        </executions>
     96              </plugin>
     97                </plugins>
     98        </build>
    7199</project>
Note: See TracChangeset for help on using the changeset viewer.