aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2017-02-07 14:56:47 +0100
committerRoel Spilker <r.spilker@gmail.com>2017-02-07 14:56:47 +0100
commitca2966f735416b62b1906edb22e68bad3963dc5e (patch)
tree8f8c66ce05e15156948d8b2e916e14af57cceef6 /build.xml
parent94d9755be4843620e1191dc62ae3fc539856aa45 (diff)
downloadlombok-ca2966f735416b62b1906edb22e68bad3963dc5e.tar.gz
lombok-ca2966f735416b62b1906edb22e68bad3963dc5e.tar.bz2
lombok-ca2966f735416b62b1906edb22e68bad3963dc5e.zip
Display changelog in installer
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index f20973cf..654c23ea 100644
--- a/build.xml
+++ b/build.xml
@@ -232,7 +232,13 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor</echo>
<echo file="build/lombok/META-INF/services/org.mapstruct.ap.spi.AstModifyingAnnotationProcessor">lombok.launch.AnnotationProcessorHider$AstModificationNotifier</echo>
</target>
- <target name="dist" description="Builds THE lombok.jar file which contains everything." depends="version, compile">
+ <target name="-latestChanges" depends="version">
+ <ant antfile="buildScripts/website.ant.xml" target="latestChanges" inheritAll="false">
+ <property name="lombok.version" value="${lombok.version}" />
+ </ant>
+ </target>
+
+ <target name="dist" description="Builds THE lombok.jar file which contains everything." depends="version, compile, -latestChanges">
<mkdir dir="dist" />
<copy file="doc/changelog.markdown" tofile="build/changelog.txt" />
<tstamp>
@@ -240,7 +246,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor</echo>
</tstamp>
<echo file="release-timestamp.txt">${releaseTimestamp}</echo>
<zip destfile="dist/lombok-${lombok.version}.jar">
- <fileset dir="build" includes="changelog.txt" />
+ <fileset dir="build" includes="changelog.txt, latestchanges.html" />
<fileset dir="." includes="LICENSE" />
<fileset dir="." includes="AUTHORS" />
<fileset dir="." includes="release-timestamp.txt" />