BAEL-4797: Default Values for Maven Properties

This commit is contained in:
Thomas Duxbury 2021-07-18 14:25:34 +01:00
parent 3f18d3ae53
commit a61d1c3efb
1 changed files with 4 additions and 3 deletions

View File

@ -13,12 +13,12 @@
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<relativePath>../..</relativePath> <relativePath>../..</relativePath>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.13</version> <version>${junit.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
@ -46,6 +46,7 @@
<properties> <properties>
<name>${project.name}</name> <name>${project.name}</name>
<my.awesome.property>property-from-pom</my.awesome.property> <my.awesome.property>property-from-pom</my.awesome.property>
<junit.version>4.13</junit.version>
</properties> </properties>
</project> </project>