added changelog entry, added Takari to output

This commit is contained in:
Manfred Moser 2017-04-28 08:45:46 -07:00 committed by rfscholte
parent 2d87f1f673
commit 83d12ec075
2 changed files with 8 additions and 1 deletions

View File

@ -3,6 +3,13 @@
The [git commit history](https://github.com/takari/maven-wrapper/commits/master) is the detailed source of all changes. The [git commit history](https://github.com/takari/maven-wrapper/commits/master) is the detailed source of all changes.
The following provides most information at an easier glance. The following provides most information at an easier glance.
## Version 0.2.2 or higher - Upcoming
- Print out Maven Wrapper version with each invocation
- see https://github.com/takari/maven-wrapper/pull/48
- contributed by Tadaya Tsuyukubo - https://github.com/ttddyy
## Version 0.2.1 - 2017-04-21 ## Version 0.2.1 - 2017-04-21
- Compile wrapper with Java 1.5 language level to allow usage with Java1.5 + - Compile wrapper with Java 1.5 language level to allow usage with Java1.5 +

View File

@ -42,7 +42,7 @@ public static void main(String[] args) throws Exception {
File rootDir = rootDir(wrapperJar); File rootDir = rootDir(wrapperJar);
String wrapperVersion = wrapperVersion(); String wrapperVersion = wrapperVersion();
System.out.println("Maven Wrapper: " + wrapperVersion); System.out.println("Takari Maven Wrapper: " + wrapperVersion);
Properties systemProperties = System.getProperties(); Properties systemProperties = System.getProperties();
systemProperties.putAll(parseSystemPropertiesFromArgs(args)); systemProperties.putAll(parseSystemPropertiesFromArgs(args));