Is the document referring to the
version org.apache.netbeans.utilities:nbm-maven-plugin (or of Maven) rather
than maven-jar-plugin?

On Nov 15, 2021 at 9:12:28 AM, Eymeric VIEUILLE <evieui...@sii.fr> wrote:

> Hi,
>
>
> Thx for the answer.
>
>
>
> Like said before, I’m looking for a way to add an implementation
> dependency. I found this :
>
> http://bits.netbeans.org/mavenutilities/nbm-maven-plugin/manifest-mojo.html
>
>
>
> The tag « moduleDependencies » seems to do what I am expecting but it is
> said that this is only available from version 3.8
>
> With older version of maven-jar-plugin, an error is present in pom file.
> With later, the error disappears but when compiling i get :
>
> Plugin org.apache.maven.plugins:maven-jar-plugin:3.14 or one of its
> dependencies could not be resolved: Failure to find
> org.apache.maven.plugins:maven-jar-plugin:jar:3.14 in
> https://repo.maven.apache.org/maven2/ was cached in the local repository,
> resolution will not be reattempted until the update interval of mirror1 has
> elapsed or updates are forced -> [Help 1]
>
>
>
>
>
> *De :* David Green <dgreen...@gmail.com>
> *Envoyé :* lundi 15 novembre 2021 15:02
> *À :* Netbeans mailing list (users@netbeans.apache.org) <
> users@netbeans.apache.org>; Eymeric VIEUILLE <evieui...@sii.fr>
> *Objet :* [EXTERNAL] Re: Implementation dependency in a maven module
>
>
>
> Hi,
>
>
>
> I am not a Maven expert but it looks like 3.2.1 is latest in github
>  apache/maven-jar-plugin (see pom.xml file).   Are you perhaps wanting
> 3.1.4 instead of 3.14?
>
>
>
> Dave
>
>
>
> On Mon, Nov 15, 2021 at 7:39 AM Eymeric VIEUILLE <evieui...@sii.fr.invalid>
> wrote:
>
> Hi again !
>
>
>
> Nobody has answers for it ?
>
>
>
> *Envoyé :* lundi 8 novembre 2021 15:29
> *À :* Netbeans mailing list (users@netbeans.apache.org) <
> users@netbeans.apache.org>
> *Objet :* Implementation dependency in a maven module
>
>
>
> Hi !
>
>
>
> I am doing the migration of a netbeans based application from Ant to Maven
> (Netbeans 12.0 version)
>
>
>
> In our project, we had implementation dependencies on netbeans modules
> (core-windows for example). In the old way, no problem : on the dependency
> core-windows, you could right click and go in « Edit » menu to select
> « Implementation Version » and set the expected « Major Release Version »
> value.
>
>
>
> Now with Maven, in my pom.xml, i added :
>
>             <plugin>
>
>                 <groupId>org.apache.maven.plugins</groupId>
>
>                 <artifactId>maven-jar-plugin</artifactId>
>
>                 <version>3.14</version>
>
>                 <configuration>
>
>                     <archive>
>
>
> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
>
>                         <manifestEntries>
>
>
> <OpenIDE-Module-Layer>framework/api/layer.xml</OpenIDE-Module-Layer>
>
>                         </manifestEntries>
>
>                         <moduleDependencies>
>
>                             <dependency>
>
>
> <id>org.netbeans.modules:org-netbeans-core-windows</id>
>
>                                 <type>impl</type>
>
>                             </dependency>
>
>                         </moduleDependencies>
>
>                     </archive>
>
>                 </configuration>
>
>             </plugin>
>
>
>
> I get the following error when compiling :
>
> Plugin org.apache.maven.plugins:maven-jar-plugin:3.14 or one of its
> dependencies could not be resolved: Failure to find
> org.apache.maven.plugins:maven-jar-plugin:jar:3.14 in
> https://repo.maven.apache.org/maven2/ was cached in the local repository,
> resolution will not be reattempted until the update interval of mirror1 has
> elapsed or updates are forced -> [Help 1]
>
>
>
> The 3.14 version of maven-jar-plugin is effectively not available on this
> repository (only olders < 3.2). Am i pointing at the wrong maven
> repository ?
>
>
>
> Moreover, I think i’m doing it the wrong way for adding the implementation
> dependency properly in my project. Can you tell me how i can do it ?
>
> --
>
> Sent from a mobile device. Please excuse any typos.
>

Reply via email to