maven-nar/nar-maven-plugin

dependencyBindings not working

shiluotang opened this issue · 0 comments

Here's the problem:

  • There're some C sources compiled into both static, jni and shared lib on amd64-Linux-gpp under the help of nar-maven-plugin:3.5.0. Call it A.
  • There's another nar library, call it B, which is using the A nar library as its dependency. We need A to be statically linked into B using dependencyBindings.
  • But as a matter of fact, the generated B doesn't contain any code from A which makes the dependencyBindings useless. We checked this with nm tool.

So is this a bug?

code snippet in pom:

<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>mygroup</groupId>
    <artifactId>mylib</artifactId>
    <version>1.0</version>
    <packaging>nar</packaging>
    <dependencies>
        <dependency>
            <groupId>org.scijava</groupId>
            <artifactId>native-lib-loader</artifactId>
            <version>2.2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>mygroup</groupId>
            <artifactId>mylib0</artifactId>
            <version>1.0</version>
            <type>nar</type>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>com.github.maven-nar</groupId>
                <artifactId>nar-maven-plugin</artifactId>
                <version>3.5.0</version>
                <extensions>true</extensions>
                <configuration>
                    <libraries>
                        <library>
                            <type>shared</type>
                            <narSystemPackage>mygroup.jni</narSystemPackage>
                            <linkCPP>false</linkCPP>
                            <dependencyBindings>
                                <dependencyBinding>mylib0:static</dependencyBinding>
                            </dependencyBindings>
                        </library>
                        <library>
                            <type>static</type>
                            <narSystemPackage>mygroup.jni</narSystemPackage>
                            <linkCPP>false</linkCPP>
                        </library>
                        <library>
                            <type>jni</type>
                            <narSystemPackage>mygroup.jni</narSystemPackage>
                            <linkCPP>false</linkCPP>
                        </library>
                    </libraries>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>