java-tutorials/spring-boot-property-exp/property-exp-default-config/pom.xml

42 lines
1.4 KiB
XML
Raw Normal View History

2018-02-28 13:40:10 -05:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2018-02-28 13:40:10 -05:00
<name>property-exp-default</name>
<groupId>com.baeldung</groupId>
<artifactId>property-exp-default-config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
2018-02-28 13:40:10 -05:00
<parent>
2018-06-08 14:04:03 -04:00
<artifactId>parent-boot-1</artifactId>
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version>
2018-06-08 14:04:03 -04:00
<relativePath>../../parent-boot-1</relativePath>
2018-02-28 13:40:10 -05:00
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
</plugins>
</build>
2018-02-28 13:40:10 -05:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<custom.property>Custom Property Value</custom.property>
</properties>
</project>