Browse Source

Fix resource directory location

This commit fixes the main resources directory location so that it also
works in a multi-projects setup.

Fixes gh-993
pull/1016/head
Stephane Nicoll 12 years ago
parent
commit
a69f518c42
  1. 4
      spring-boot-starters/spring-boot-starter-parent/pom.xml

4
spring-boot-starters/spring-boot-starter-parent/pom.xml

@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
<!-- Turn on filtering by default for application properties -->
<resources>
<resource>
<directory>src/main/resources</directory>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/application.yml</include>
@ -49,7 +49,7 @@ @@ -49,7 +49,7 @@
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>**/application.yml</exclude>
<exclude>**/application.properties</exclude>

Loading…
Cancel
Save