Skip to content

Commit

Permalink
preparation for 5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
DJCordhose committed Nov 7, 2017
1 parent 43803eb commit a3fb117
Show file tree
Hide file tree
Showing 23 changed files with 22 additions and 1,814 deletions.
3 changes: 3 additions & 0 deletions Releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ Feature Release 4.1.0
Major Release 5.0.0
===================

Date: 07.11.2017
Tag: 5.0.0

* Breaking Change: Completely removed Abstraction over Template types, only interpreted survives
* Breaking Change: Removed all API deprecated in version 4
* Breaking Change: Switch to Java 8 language level
Expand Down
30 changes: 6 additions & 24 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
<property name="final.name" value="${name}-${version}" />
<property name="nocompiler.name" value="${final.name}" />
<property name="dist.name" value="${name}-${version}-full.zip" />
<property name="jar.name" value="${final.name}-bundled.jar" />
<property name="nocompiler.jar.name" value="${nocompiler.name}.jar" />
<property name="asm" value="lib/asm-3.3.1.jar" />

<tstamp>
<format property="TODAY.DATE" pattern="yyyy-MM-dd" locale="us" />
Expand Down Expand Up @@ -94,10 +92,10 @@
</copy>
</target>

<!--
<!--
===================================================================
Archive the code
===================================================================
Archive the code
===================================================================
-->
<target name="archive-jars" depends="build" description="Builds the exectutable jar-archives">
<jar destfile="${dist.dir}/${nocompiler.jar.name}" filesetmanifest="skip">
Expand All @@ -108,23 +106,7 @@
<attribute name="Build-Date" value="${today}" />
</manifest>
<fileset dir="${build.dir}" excludes="**/*Test*.class,**/*Tests*.class,**/sample/**,tmp/**" />
</jar>

<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="lib/jarjar-1.0.jar" />

<jarjar jarfile="${dist.dir}/${jar.name}">
<manifest>
<attribute name="Built-By" value="${creator}" />
<attribute name="Main-Class" value="${main-class}" />
<attribute name="Version" value="${version}" />
<attribute name="Build-Date" value="${today}" />
</manifest>
<zipfileset src="${dist.dir}/${nocompiler.jar.name}" />
<zipfileset src="${asm}" />
<rule pattern="org.objectweb.asm.**" result="com.floreysoft.jmte.internal.asm.@1" />
<keep pattern="com.floreysoft.jmte.**" />
</jarjar>

</jar>
</target>

<!--
Expand All @@ -150,8 +132,8 @@
<zipfileset dir="${src.dir}" prefix="${final.name}/src" />
<zipfileset dir="${doc.dir}" prefix="${final.name}/doc" />
<zipfileset dir="${lib.dir}" prefix="${final.name}/lib" />
<zipfileset dir="${dist.dir}" includes="${jar.name}, ${nocompiler.jar.name}" prefix="${final.name}" />
<zipfileset dir="${basedir}" includes="build.xml, Caliper*, common.properties, COPYING, local.properties.sample, Releasenotes.txt" prefix="${final.name}" />
<zipfileset dir="${dist.dir}" includes="${nocompiler.jar.name}" prefix="${final.name}" />
<zipfileset dir="${basedir}" includes="build.xml, common.properties, COPYING, local.properties.sample, Releasenotes.md" prefix="${final.name}" />
</zip>
</target>

Expand Down
161 changes: 0 additions & 161 deletions caliper/Caliper-Compiled-Engine-Reports.txt

This file was deleted.

Loading

0 comments on commit a3fb117

Please sign in to comment.