The jar name is now just the plugin name rather than version appended.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@1864 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Jiger Patel
2003-04-28 06:06:27 +00:00
parent 9973c873f1
commit b2e3bcf4ca

View File

@ -40,7 +40,7 @@
</target>
<target name="jar" depends="compile">
<jar jarfile="${lib}/${ant.project.name}-${pluginversion}.jar">
<jar jarfile="${lib}/${ant.project.name}.jar">
<fileset dir="${build}"/>
<fileset dir="${config}">
<include name="*.props"/>
@ -48,7 +48,7 @@
<include name="*.html"/>
</fileset>
</jar>
<copy file="${lib}/${ant.project.name}-${pluginversion}.jar" todir="${jedit.jars.dir}"></copy>
<copy file="${lib}/${ant.project.name}.jar" todir="${jedit.jars.dir}"></copy>
</target>