diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-14 01:33:30 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-02-14 01:33:30 +0100 |
commit | 62d2d737123b7e0ffa5f89043a973f15fde0188f (patch) | |
tree | dc828131ca7c9f29be443deb95e9153a0314252c /build.xml | |
parent | 72f546f9cb424932024e91b2c4431aea51909c42 (diff) | |
download | lombok-62d2d737123b7e0ffa5f89043a973f15fde0188f.tar.gz lombok-62d2d737123b7e0ffa5f89043a973f15fde0188f.tar.bz2 lombok-62d2d737123b7e0ffa5f89043a973f15fde0188f.zip |
[fixing up 0d7540d] the jar file produced did not have a .jar file extension
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1085,6 +1085,6 @@ You can also create your own by writing a 'testenvironment.properties' file. The <javac includeAntRuntime="false" source="1.9" target="1.9" destdir="build/mapstruct-binding" modulepath="build/mapstruct-module-path"> <src path="src/bindings/mapstruct" /> </javac> - <jar destfile="dist/lombok-mapstruct-binding-0.1.0" basedir="build/mapstruct-binding" includes="**" /> + <jar destfile="dist/lombok-mapstruct-binding-0.1.0.jar" basedir="build/mapstruct-binding" includes="**" /> </target> </project> |