move-tool / gephi-plugins

M.O.V.E. Multi-criteria Optimisation and Visualisation Experimentation tool
1 stars 0 forks source link

mvn package: org.netbeans.modules.masterfs but is not listed as a friend #1

Closed move-tool closed 8 years ago

move-tool commented 8 years ago

mvn package results in:

[ERROR] Failed to execute goal org.codehaus.mojo:nbm-maven-plugin:3.14:manifest (default-manifest) on project move: Module has friend dependency on org.netbeans.modules.masterfs but is not listed as a friend. -> [Help 1]

clue to solving it might be in: https://github.com/mojohaus/nbm-maven-plugin/blob/1ed1b3a15471cb90b55998798ee760f15c8861f4/src/main/java/org/codehaus/mojo/nbm/NetBeansManifestUpdateMojo.java

move-tool commented 8 years ago

adding following doesn't solve it

        <dependency>
            <groupId>org.netbeans.modules</groupId>
            <artifactId>org-netbeans-modules-masterfs</artifactId>
            <version>RELEASE81</version>
        </dependency>

or

        <dependency>
            <groupId>org.netbeans.modules</groupId>
            <artifactId>org-netbeans-modules-masterfs-linux</artifactId>
            <version>RELEASE81</version>
        </dependency>
```xml