2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 21:43:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-12-05 09:56:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>property-exp-custom-config</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>property-exp-custom-config</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<artifactId>spring-boot-property-exp</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>**/application*.yml</include>
|
|
|
|
<include>**/application*.yaml</include>
|
|
|
|
<include>**/application*.properties</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/application*.yml</exclude>
|
|
|
|
<exclude>**/application*.yaml</exclude>
|
|
|
|
<exclude>**/application*.properties</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2019-12-24 06:47:09 -05:00
|
|
|
<version>${apache-maven.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<configuration>
|
|
|
|
<delimiters>
|
|
|
|
<delimiter>@</delimiter>
|
|
|
|
</delimiters>
|
|
|
|
<useDefaultDelimiters>true</useDefaultDelimiters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2019-12-24 06:47:09 -05:00
|
|
|
<version>${exec-maven-plugin.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.propertyexpansion.SpringBootPropertyExpansionApp</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<spring-boot.version>1.5.10.RELEASE</spring-boot.version>
|
|
|
|
<custom.property>Custom Property Value</custom.property>
|
2019-12-24 06:47:09 -05:00
|
|
|
<apache-maven.version>2.7</apache-maven.version>
|
|
|
|
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|