Skip to content

Commit

Permalink
uniform jar file naming across buildsystems
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzmazur committed Oct 30, 2016
1 parent 93cdf8e commit 2058d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -53,7 +53,7 @@
<target name="jar" depends="compile"
description="generate the distribution" >
<mkdir dir="${dist}"/>
<jar destfile="${dist}/yacas.jar" basedir="${build}" excludes="tests/**">
<jar destfile="${dist}/yacas-${version}.jar" basedir="${build}" excludes="tests/**">
<manifest>
<attribute name="Main-Class" value="${main}"/>
<attribute name="Specification-Version" value="${version}"/>
Expand Down
2 changes: 1 addition & 1 deletion jyacas/CMakeLists.txt
Expand Up @@ -75,7 +75,7 @@ set (JYACAS_SRCS
net/sf/yacas/BackQuoteBehaviour.java
net/sf/yacas/YacasException.java)

add_jar (jyacas ${JYACAS_SRCS} ENTRY_POINT net/sf/yacas/YacasConsole VERSION ${YACAS_VERSION})
add_jar (jyacas ${JYACAS_SRCS} ENTRY_POINT net/sf/yacas/YacasConsole VERSION ${YACAS_VERSION} OUTPUT_NAME "yacas-${YACAS_VERSION}.jar")

get_target_property(JYACAS_JAR_FILE jyacas JAR_FILE)

Expand Down

0 comments on commit 2058d17

Please sign in to comment.