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

testsuite compilation fails #27

Closed richardgood closed 7 years ago

richardgood commented 7 years ago

Hi

I have noted that with latest master branch as of May 18 the resources fail to compile due to: java.lang.NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format(Ljava/lang/String;Ljava/lang/Object;)Lorg/slf4j/helpers/FormattingTuple;

I had to add:

<dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.21</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

To all the resource pom files for compilation to work.