RestComm / jain-slee.diameter

JAIN SLEE jDiameter Resource Adaptors Repository
http://www.restcomm.com/
GNU Affero General Public License v3.0
11 stars 33 forks source link

release-wildfly compile fails due to pom typo #28

Closed richardgood closed 7 years ago

richardgood commented 7 years ago

In restcomm-slee-ra-diameter-base-ra-release.pom.xml there is a typo that causes compiliation failure when building the release-wildfly profile. "tofile" should be used instead of "todir". See below. This should be fixed in all Diameter resource release pom.xml.

- <copy overwrite="true" file="${basedir}/build-wildfly.xml" todir="${release.dir}/resources/diameter-base/build.xml">
+ <copy overwrite="true" file="${basedir}/build-wildfly.xml" tofile="${release.dir}/resources/diameter-base/build.xml">
SergeyLee commented 7 years ago

Thanks @richardgood!