Ignore:
Timestamp:
05/19/15 09:34:36 (9 years ago)
Author:
Twan Goosen
Message:

reading datasource properties from file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/trunk/ComponentSpecFixer/pom.xml

    r6223 r6224  
    4141                            <classpathPrefix>lib/</classpathPrefix>
    4242                        </manifest>
     43                        <manifestEntries>
     44                            <Class-Path>.</Class-Path>
     45                        </manifestEntries>
    4346                    </archive>
    4447                </configuration>
     
    6568                </executions>
    6669            </plugin>
     70            <plugin>
     71                <artifactId>maven-resources-plugin</artifactId>
     72                <version>2.7</version>
     73                <executions>
     74                    <execution>
     75                        <id>copy-resources</id>
     76                        <phase>validate</phase>
     77                        <goals>
     78                            <goal>copy-resources</goal>
     79                        </goals>
     80                        <configuration>
     81                            <outputDirectory>${basedir}/target</outputDirectory>
     82                            <resources>
     83                                <resource>
     84                                    <directory>src/main/resources/conf</directory>
     85                                </resource>
     86                            </resources>
     87                        </configuration>
     88                    </execution>
     89                </executions>
     90            </plugin>
    6791        </plugins>
    6892    </build>
Note: See TracChangeset for help on using the changeset viewer.