Adding dll dependency

Hello,

I am migrating maven project to Gradle. There are some compile time .dll and .so dependency to add to build.gradle file.

for ex: dependency

    <dependency>
        <groupId>abcd</groupId>
        <artifactId>systemtools</artifactId>
        <classifier>windows-x86_64</classifier>
        <type>dll</type>
        <scope>test</scope>
    </dependency>

Please let me know how to add the same.

Regards,
Niranjan

Have you tried the different dependency notations described here?

I think you’re looking for this form:

configurationName “group:name:version:classifier@extension”

or the long hand version:

configurationName group: group:, name: name, version: version, classifier: classifier, ext: extension

Your ‘dll’ type would be an extension instead and configurationName would be ‘testCompile’.