[BAEL-12090] - Extract versions into properties

This commit is contained in:
amit2103
2019-02-04 00:06:11 +05:30
parent 52db7dd65b
commit a5b5b0fcba
40 changed files with 267 additions and 175 deletions

View File

@@ -40,12 +40,12 @@
<!-- forcing spring boot 1.x sing log4j was dropped in spring boot 1.4 and beyond -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
<version>1.3.8.RELEASE</version>
<version>${spring-boot-starter-log4j.version}</version>
</dependency>
<dependency>
<groupId>org.graylog2</groupId>
<artifactId>gelfj</artifactId>
<version>1.1.16</version>
<version>${gelfj.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
@@ -71,5 +71,7 @@
<properties>
<start-class>com.baeldung.springbootlogging.SpringBootLoggingApplication</start-class>
<spring-boot-starter-log4j.version>1.3.8.RELEASE</spring-boot-starter-log4j.version>
<gelfj.version>1.1.16</gelfj.version>
</properties>
</project>