move versions in properties

This commit is contained in:
amit.pandey
2020-01-16 01:53:26 +05:30
parent 6ff4e49984
commit b315bf35c6
66 changed files with 339 additions and 158 deletions

View File

@@ -37,8 +37,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${source.version}</source>
<target>${target.version}</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
@@ -48,5 +48,7 @@
<properties>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<assertj-core.version>3.10.0</assertj-core.version>
<source.version>1.8</source.version>
<target.version>1.8</target.version>
</properties>
</project>