usnistgov / jsip

JSIP: Java SIP specification Reference Implementation (moved from java.net)
Other
285 stars 129 forks source link

build.xml of example points to wrong path #42

Open dinoopp opened 5 years ago

dinoopp commented 5 years ago

The jsip\src\examples\ims\build.xml is confirgured with wrong paths to log4j_jar and junit_jar.

Current value <property name="log4j_jar" value="${root}/lib/${log4j}" /> <property name="junit_jar" value="${root}/lib/${junit}" />

And it has to be

<property name="log4j_jar" value="${root}/${log4j}" /> <property name="junit_jar" value="${root}/${junit}" />

The folder lib is already added in ant-build-config.properties