[netbeans] 01/01: Merge pull request #4173 from apache/delivery

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit 67c58bfcc0919ca19f27e15c873faaa872d035d4
Merge: bfa926fee2 cc14a920bc
Author: Eric Barboni 
AuthorDate: Tue May 31 10:38:08 2022 +0200

Merge pull request #4173 from apache/delivery

Sync delivery to master after 14-rc6

 .../modules/maven/newproject/TemplateUtils.java| 42 +++---
 .../idenative/IDENativeMavenWizardIterator.java|  1 +
 .../idenative/IDENativeTemplateHandler.java| 19 +-
 .../newproject/idenative/PomJavaNativeMWI.java |  9 -
 .../openide/util/lookup/implspi/ActiveQueue.java   | 29 ---
 5 files changed, 59 insertions(+), 41 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated (bfa926fee2 -> 67c58bfcc0)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


from bfa926fee2 Added support for properties backed up by functional 
interfaces
 add eeaa76483c Avoid dependency on ReferenceQueue internals
 add f44633889a Merge pull request #4130 from anthonyvdotbe/fix-activequeue
 add fcbe2f82dc [3809] Maven/New POM Project
 add cc14a920bc Merge pull request #4147 from vieiro/hotfix/3809
 new 67c58bfcc0 Merge pull request #4173 from apache/delivery

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../modules/maven/newproject/TemplateUtils.java| 42 +++---
 .../idenative/IDENativeMavenWizardIterator.java|  1 +
 .../idenative/IDENativeTemplateHandler.java| 19 +-
 .../newproject/idenative/PomJavaNativeMWI.java |  9 -
 .../openide/util/lookup/implspi/ActiveQueue.java   | 29 ---
 5 files changed, 59 insertions(+), 41 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated: [NETBEANSINFRA-264] Include runtime module libraries

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 02f4344  [NETBEANSINFRA-264] Include runtime module libraries
 new bdb4830  Merge pull request #28 from 
ahauschulte/NETBEANSINFRA-264_add-dependencies-with-scope-runtime
02f4344 is described below

commit 02f4344c964853da91100e3495091b5480709cd2
Author: Axel Hauschulte 
AuthorDate: Sun Mar 27 13:23:18 2022 +0200

[NETBEANSINFRA-264] Include runtime module libraries

The nbm Maven plugin packs module libraries together with the module
and adds them to the "Class-Path" entry of the manifest. These
libraries are stored at netbeans\modules\ext within the module's
nbm file. However, only libraries with scope "compile" are recognized.
If the module declares dependencies (direct or transitive) with scope
"runtime" in its pom file, these libraries won't be included in the
module's nbm file nor will they be added to the classpath.

Add the parameter includeRuntimeModuleLibraries to
NetBeansManifestUpdateMojo to choose between the existing behaviour,
i.e. adding module libraries with scope "compile" only. Or changing
the creation of the dependency tree so that module libraries with
scope "compile" as well as "runtime" will be recognized.
---
 .../org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java   | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java 
b/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
index b826a7b..5e30978 100644
--- a/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
+++ b/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
@@ -145,6 +145,14 @@ public class NetBeansManifestUpdateMojo
 defaultValue = 
"${project.build.outputDirectory}/META-INF/MANIFEST.MF" )
 private File targetManifestFile;
 
+/**
+ * Default behaviour is to add module libraries of scope 
compile to the classpath and bundle them with
+ * the nbm file. If set to true, module libraries of scope 
runtime will also be added to the classpath
+ * and bundled with the nbm file.
+ */
+@Parameter( property = "maven.nbm.includeRuntimeModuleLibraries", 
defaultValue = "false" )
+private boolean includeRuntimeModuleLibraries;
+
 /**
  * Verify the runtime NetBeans module dependencies and Class-Path items 
generated from Maven dependencies. The check
  * is done by matching classes used in current project. Allowed values for 
the parameter are fail,
@@ -465,7 +473,8 @@ public class NetBeansManifestUpdateMojo
 }
 getLog().debug( "module =" + module );
 
-DependencyNode treeroot = createDependencyTree( project, 
dependencyGraphBuilder, "compile" );
+final String scope = includeRuntimeModuleLibraries ? 
Artifact.SCOPE_COMPILE_PLUS_RUNTIME : Artifact.SCOPE_COMPILE;
+DependencyNode treeroot = createDependencyTree( project, 
dependencyGraphBuilder, scope );
 Map examinerCache = new HashMap();
 @SuppressWarnings( "unchecked" )
 List libArtifacts = getLibraryArtifacts( treeroot, module, 
project.getRuntimeArtifacts(),


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (bdb4830 -> d58f3a9)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from bdb4830  Merge pull request #28 from 
ahauschulte/NETBEANSINFRA-264_add-dependencies-with-scope-runtime
 add 73b4c74  Bump plexus-archiver from 3.5 to 4.2.7
 add d58f3a9  Merge pull request #34 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-archiver-4.2.7

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4 created (now 5fbbcec)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 5fbbcec  Bump nb-shared from 1.3 to 1.4

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0 created (now 403e586)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 403e586  Bump nbm-maven-harness from 12.2 to 13.0

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (d58f3a9 -> eb86745)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from d58f3a9  Merge pull request #34 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-archiver-4.2.7
 add 403e586  Bump nbm-maven-harness from 12.2 to 13.0
 new eb86745  Merge pull request #45 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (eb86745 -> 620596e)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from eb86745  Merge pull request #45 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0
 add 5fbbcec  Bump nb-shared from 1.3 to 1.4
 new 620596e  Merge pull request #44 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] 01/01: Merge pull request #44 from apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git

commit 620596ece8e582dfee8e63167aae7323c4566947
Merge: eb86745 5fbbcec
Author: Eric Barboni 
AuthorDate: Tue May 31 13:05:26 2022 +0200

Merge pull request #44 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4

Bump nb-shared from 1.3 to 1.4

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] 01/01: Merge pull request #45 from apache/dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git

commit eb86745cc2d9f94d3dec6943c5ec17e4a7a6c446
Merge: d58f3a9 403e586
Author: Eric Barboni 
AuthorDate: Tue May 31 13:05:18 2022 +0200

Merge pull request #45 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nbm-maven-harness-13.0

Bump nbm-maven-harness from 12.2 to 13.0

 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0 created (now ea01c65)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at ea01c65  Bump maven-invoker-plugin from 1.10 to 3.3.0

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven.plugins-maven-javadoc-plugin-3.4.0 created (now 6e80593)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven.plugins-maven-javadoc-plugin-3.4.0
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 6e80593  Bump maven-javadoc-plugin from 3.3.1 to 3.4.0

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated: readme updates (fixed links) + new log/config/cache section.

2022-05-31 Thread mbien
This is an automated email from the ASF dual-hosted git repository.

mbien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 5928280110 readme updates (fixed links) + new log/config/cache section.
 new fe1b92fc78 Merge pull request #3948 from mbien/readme-updates
5928280110 is described below

commit 59282801106f1665dbfa7c3663d68ae788159f0f
Author: Michael Bien 
AuthorDate: Sat Apr 9 12:57:02 2022 +0200

readme updates (fixed links) + new log/config/cache section.
---
 README.md | 26 +++---
 1 file changed, 19 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 955db1d15a..0f749ee021 100644
--- a/README.md
+++ b/README.md
@@ -27,8 +27,8 @@ Apache NetBeans is an open source development environment, 
tooling platform, and
 
 ### Build status
* GitHub actions
- * [![Build 
Status](https://github.com/apache/netbeans/actions/workflows/main.yml/badge.svg)](https://github.com/apache/netbeans/actions/workflows/main.yml)
- * [![Profiler Lib Native 
Binaries](https://github.com/apache/netbeans/actions/workflows/native-binary-build-lib.profiler.yml/badge.svg)](https://github.com/apache/netbeans/actions/workflows/native-binary-build-lib.profiler.yml)
+ * [![Build 
Status](https://github.com/apache/netbeans/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/apache/netbeans/actions/workflows/main.yml)
+ * [![Profiler Lib Native 
Binaries](https://github.com/apache/netbeans/actions/workflows/native-binary-build-lib.profiler.yml/badge.svg?branch=master)](https://github.com/apache/netbeans/actions/workflows/native-binary-build-lib.profiler.yml)
* TravisCI:
  * [![Build 
Status](https://app.travis-ci.com/apache/netbeans.svg?branch=master)](https://app.travis-ci.com/apache/netbeans)
* Apache Jenkins:
@@ -39,8 +39,7 @@ Apache NetBeans is an open source development environment, 
tooling platform, and
 
   * Git
   * Ant 1.9.9 or above
-  * JDK 11 (to build NetBeans)
-  * JDK 11 or above (to run NetBeans)
+  * JDK 11 or above (to build and run NetBeans)
   * MinGW (optional), to build Windows Launchers
 
  Notes:
@@ -112,13 +111,26 @@ $ ant tryme
 
 ### Download
 
-Developer builds can be downloaded: [Latest build 
(netbeans-xxx.zip)](https://ci-builds.apache.org/job/Netbeans/job/netbeans-linux/lastSuccessfulBuild/artifact/nbbuild/NetBeans-dev-Netbeans/).
+Developer builds can be downloaded: [Latest build 
(netbeans-xxx.zip)](https://ci-builds.apache.org/job/Netbeans/job/netbeans-linux/lastSuccessfulBuild/artifact/nbbuild/).
 
-Convenience binary of released source artifacts: 
https://netbeans.apache.org/download/index.html.
+Latest release (convenience binary of released source artifacts): 
https://netbeans.apache.org/download/index.html.
 
 ### Reporting Bugs
 
-Bugs should be reported to 
https://issues.apache.org/jira/projects/NETBEANS/issues/
+Bugs should be reported to https://github.com/apache/netbeans/issues
+
+### Log, Config and Cache Locations
+
+ * start config (JVM settings, default JDK, userdir, cachedir location and 
more):  
+   `netbeans/etc/netbeans.conf`
+ * user settings storage (preferences, installed plugins, logs):  
+   system dependent, see `Help -> About` for concrete location
+ * cache files (maven index, search index etc):  
+   system dependent, see `Help -> About` for concrete location
+ * default log location (tip: can be inspected via `View -> IDE Log`):  
+   `$DEFAULT_USERDIR_ROOT/var/log/messages.log`
+
+**Note:** removing/changing the user settings directory will reset NetBeans to 
first launch defaults
 
 ### Full History
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (620596e -> d37b98d)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 620596e  Merge pull request #44 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4
 add c75807c  Bump plexus-utils from 3.1.0 to 3.4.2
 add d37b98d  Merge pull request #41 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-utils-3.4.2

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (d37b98d -> 966f3a8)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from d37b98d  Merge pull request #41 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-utils-3.4.2
 add 6e80593  Bump maven-javadoc-plugin from 3.3.1 to 3.4.0
 add 966f3a8  Merge pull request #47 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-javadoc-plugin-3.4.0

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (966f3a8 -> 80e2ac1)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 966f3a8  Merge pull request #47 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-javadoc-plugin-3.4.0
 add ea01c65  Bump maven-invoker-plugin from 1.10 to 3.3.0
 new 80e2ac1  Merge pull request #46 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] 01/01: Merge pull request #46 from apache/dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git

commit 80e2ac14646eee68ae2d1afb1b6dc26d379f9c63
Merge: 966f3a8 ea01c65
Author: Eric Barboni 
AuthorDate: Tue May 31 13:30:15 2022 +0200

Merge pull request #46 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0

Bump maven-invoker-plugin from 1.10 to 3.3.0

 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (80e2ac1 -> c91cb2a)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from 80e2ac1  Merge pull request #46 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-invoker-plugin-3.3.0
 add d40f98b  Bump modello-maven-plugin from 1.8.3 to 2.0.0
 add c91cb2a  Merge pull request #35 from 
apache/dependabot/maven/master/org.codehaus.modello-modello-maven-plugin-2.0.0

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven.plugins-maven-plugin-plugin-3.6.4 created (now 834bf7e)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven.plugins-maven-plugin-plugin-3.6.4
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 834bf7e  Bump maven-plugin-plugin from 3.6.0 to 3.6.4

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (c91cb2a -> f324e58)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from c91cb2a  Merge pull request #35 from 
apache/dependabot/maven/master/org.codehaus.modello-modello-maven-plugin-2.0.0
 add 834bf7e  Bump maven-plugin-plugin from 3.6.0 to 3.6.4
 add f324e58  Merge pull request #48 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-plugin-plugin-3.6.4

No new revisions were added by this update.

Summary of changes:
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] 01/01: Merge pull request #42 from apache/dependabot/maven/master/org.apache.maven.shared-maven-dependency-tree-3.1.1

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git

commit ac3b60a225f9dab0b514192b997d70cae63dea60
Merge: f324e58 54f375c
Author: Eric Barboni 
AuthorDate: Tue May 31 14:28:55 2022 +0200

Merge pull request #42 from 
apache/dependabot/maven/master/org.apache.maven.shared-maven-dependency-tree-3.1.1

Bump maven-dependency-tree from 2.2 to 3.1.1

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated (f324e58 -> ac3b60a)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


from f324e58  Merge pull request #48 from 
apache/dependabot/maven/master/org.apache.maven.plugins-maven-plugin-plugin-3.6.4
 add 54f375c  Bump maven-dependency-tree from 2.2 to 3.1.1
 new ac3b60a  Merge pull request #42 from 
apache/dependabot/maven/master/org.apache.maven.shared-maven-dependency-tree-3.1.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated: Adapt to new methodsignature after upgrade

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new c34cbbc  Adapt to new methodsignature after upgrade
 new e88affe  Merge pull request #49 from ebarboni/fixbump
c34cbbc is described below

commit c34cbbc20ebf469dc659a97c2caac90b54d089de
Author: Eric Barboni 
AuthorDate: Tue May 31 16:58:56 2022 +0200

Adapt to new methodsignature after upgrade
---
 pom.xml| 30 +-
 .../org/apache/netbeans/nbm/AbstractNbmMojo.java   |  3 ++-
 .../netbeans/nbm/NetBeansManifestUpdateMojo.java   | 10 +++-
 3 files changed, 40 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 0ec93b8..dec3540 100644
--- a/pom.xml
+++ b/pom.xml
@@ -411,21 +411,23 @@ under the License.
 org.apache.maven
 maven-artifact
 ${maven.version}
+provided
 
 
 org.apache.maven
 maven-compat
 ${maven.version}
+provided
 
 
 org.apache.maven
 maven-plugin-api
 ${maven.version}
+provided
 
 
 org.apache.maven.plugin-tools
 maven-plugin-annotations
-3.6.4
 
 
 org.apache.ant
@@ -468,6 +470,7 @@ under the License.
 org.apache.maven
 maven-model
 ${maven.version}
+provided
 
 
 org.codehaus.plexus
@@ -483,6 +486,7 @@ under the License.
 org.apache.maven
 maven-core
 ${maven.version}
+provided
 
 
 org.apache.maven.plugin-testing
@@ -512,6 +516,30 @@ under the License.
 18.0
 jar
 -->
+
+org.apache.maven
+maven-artifact-manager
+2.0.5
+provided
+
+
+org.apache.maven
+maven-profile
+2.0.5
+provided
+
+
+org.apache.maven
+maven-project
+2.0.5
+provided
+
+
+org.apache.maven
+maven-settings
+3.8.5
+provided
+
 
 
 1.8
diff --git a/src/main/java/org/apache/netbeans/nbm/AbstractNbmMojo.java 
b/src/main/java/org/apache/netbeans/nbm/AbstractNbmMojo.java
index 9240caa..d88489b 100644
--- a/src/main/java/org/apache/netbeans/nbm/AbstractNbmMojo.java
+++ b/src/main/java/org/apache/netbeans/nbm/AbstractNbmMojo.java
@@ -38,6 +38,7 @@ import 
org.apache.maven.artifact.resolver.filter.ScopeArtifactFilter;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugin.logging.Log;
 import org.apache.maven.project.MavenProject;
+import org.apache.maven.project.ProjectBuildingRequest;
 import org.apache.maven.shared.dependency.graph.DependencyGraphBuilder;
 import 
org.apache.maven.shared.dependency.graph.DependencyGraphBuilderException;
 import org.apache.maven.shared.dependency.graph.DependencyNode;
@@ -347,7 +348,7 @@ public abstract class AbstractNbmMojo
 }
 
 //copied from dependency:tree mojo
-protected DependencyNode createDependencyTree( MavenProject project, 
DependencyGraphBuilder dependencyGraphBuilder,
+protected DependencyNode createDependencyTree( ProjectBuildingRequest 
project, DependencyGraphBuilder dependencyGraphBuilder,
String scope )
 throws MojoExecutionException
 {
diff --git 
a/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java 
b/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
index 5e30978..c098a8e 100644
--- a/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
+++ b/src/main/java/org/apache/netbeans/nbm/NetBeansManifestUpdateMojo.java
@@ -44,6 +44,7 @@ import org.apache.maven.artifact.factory.ArtifactFactory;
 import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
 import org.apache.maven.artifact.repository.ArtifactRepository;
 import org.apache.maven.artifact.resolver.ArtifactCollector;
+import org.apache.maven.execution.MavenSession;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugin.MojoFailureException;
 import org.apache.maven.plugins.annotations.Component;
@@ -51,7 +52,9 @@ import org.apache.maven.plugins.annotations.LifecyclePhase;
 import org.apache.maven.plugins.annotations.Mojo;
 import org.apache.maven.plugins.annotations.Parameter;
 import org.apache.maven.plugins.annotations.ResolutionScope;
+import org.apache.maven.project.DefaultProjectBuildingRequest;
 import org.apache.maven.project.MavenProject;
+import or

[netbeans-mavenutils-nbm-maven-plugin] annotated tag nbm-maven-plugin-4.8 created (now b7f632e)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to annotated tag nbm-maven-plugin-4.8
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at b7f632e  (tag)
 tagging 3c03efecae0fb3c4b146de77bf65fe121fd00b30 (commit)
 replaces nbm-maven-plugin-4.7
  by Eric Barboni
  on Tue May 31 18:18:59 2022 +0200

- Log -
[maven-release-plugin] copy for tag nbm-maven-plugin-4.8
---

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated: [maven-release-plugin] prepare release nbm-maven-plugin-4.8

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 3c03efe  [maven-release-plugin] prepare release nbm-maven-plugin-4.8
3c03efe is described below

commit 3c03efecae0fb3c4b146de77bf65fe121fd00b30
Author: Eric Barboni 
AuthorDate: Tue May 31 18:18:53 2022 +0200

[maven-release-plugin] prepare release nbm-maven-plugin-4.8
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index dec3540..fab4a1c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
 4.0.0
 
 nbm-maven-plugin
-4.8-SNAPSHOT
+4.8
 maven-plugin
 
 Apache NetBeans Maven Utilities - NBM Maven Plugin
@@ -54,7 +54,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git
 
https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin
-HEAD
+nbm-maven-plugin-4.8
 
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch master updated: [maven-release-plugin] prepare for next development iteration

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new f752c8f  [maven-release-plugin] prepare for next development iteration
f752c8f is described below

commit f752c8f221c86ec4d232b20447ab8d65325aef40
Author: Eric Barboni 
AuthorDate: Tue May 31 18:19:04 2022 +0200

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index fab4a1c..cfdb04c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
 4.0.0
 
 nbm-maven-plugin
-4.8
+4.9-SNAPSHOT
 maven-plugin
 
 Apache NetBeans Maven Utilities - NBM Maven Plugin
@@ -54,7 +54,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git
 
https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin
-nbm-maven-plugin-4.8
+HEAD
 
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nb-repository-plugin] annotated tag nb-repository-plugin-1.7 created (now 5ed4b04)

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to annotated tag nb-repository-plugin-1.7
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


  at 5ed4b04  (tag)
 tagging 68f94faa4ad38aabc44e1a3f53245f60ab0069e4 (commit)
 replaces nb-repository-plugin-1.6
  by Eric Barboni
  on Tue May 31 18:20:18 2022 +0200

- Log -
[maven-release-plugin] copy for tag nb-repository-plugin-1.7
---

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nb-repository-plugin] branch master updated: [maven-release-plugin] prepare for next development iteration

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new a74ad8d  [maven-release-plugin] prepare for next development iteration
a74ad8d is described below

commit a74ad8d9b74a91db6acd54b50ea1b095f2dbf621
Author: Eric Barboni 
AuthorDate: Tue May 31 18:20:22 2022 +0200

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1a721d4..8b92b13 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
 4.0.0
 
 nb-repository-plugin
-1.7
+1.8-SNAPSHOT
 maven-plugin
 
 Apache NetBeans Maven Utilities - NB Repository Plugin
@@ -54,7 +54,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git
 
https://github.com/apache/netbeans-mavenutils-nb-repository-plugin
-  nb-repository-plugin-1.7
+  HEAD
 
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nb-repository-plugin] branch master updated: [maven-release-plugin] prepare release nb-repository-plugin-1.7

2022-05-31 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 68f94fa  [maven-release-plugin] prepare release 
nb-repository-plugin-1.7
68f94fa is described below

commit 68f94faa4ad38aabc44e1a3f53245f60ab0069e4
Author: Eric Barboni 
AuthorDate: Tue May 31 18:20:12 2022 +0200

[maven-release-plugin] prepare release nb-repository-plugin-1.7
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4807765..1a721d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
 4.0.0
 
 nb-repository-plugin
-1.7-SNAPSHOT
+1.7
 maven-plugin
 
 Apache NetBeans Maven Utilities - NB Repository Plugin
@@ -54,7 +54,7 @@ under the License.
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git
 
scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git
 
https://github.com/apache/netbeans-mavenutils-nb-repository-plugin
-  HEAD
+  nb-repository-plugin-1.7
 
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



svn commit: r54799 - in /dev/netbeans/netbeans-maven-utilities: nb-repository-plugin/nb-repository-plugin-1.7/ nbm-maven-plugin/nbm-maven-plugin-4.8/

2022-05-31 Thread skygo
Author: skygo
Date: Tue May 31 16:31:52 2022
New Revision: 54799

Log:
vote preparation for nb-repository-plugin 1.7 and nbm-maven-plugin 4.8

Added:

dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/

dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip
   (with props)

dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.asc

dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.sha512
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/

dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip
   (with props)

dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip.asc

dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip.sha512

Added: 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip
==
Binary file - no diff available.

Propchange: 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.asc
==
--- 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.asc
 (added)
+++ 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.asc
 Tue May 31 16:31:52 2022
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEj+HCbxXgMg50C67YSiYBztqTgvMFAmKWQGEACgkQSiYBztqT
+gvMKvhAAhwDLDl70Kvh+MMXX5a31S+UFOvm2ZBTVrMnfjmdquaXqQ363P3GejlC7
+U6Bq2R4SZ2T0ifVAuRFodgE0w6hv1fZM5kFoIKIiRwucDgTNyiI1pO35Vwj7vK5m
+/D/WN0ih1x7cL7+rMwUa012JePPWmad1PR579Gi5gY/Dir/3Td74D06hDwvbkQml
+3klVVnoqUKgQOe/oqx8FNqSA9VDf3I9bDXPQGIJcOhg75MVD+dHOja/GhZ+4Z1LH
+RD7Pp9je5ni/9MnM0pmmNuc58wIkrLsEM4F2S4yNHgy9bGDYSEvumsKO0gN938e4
+fslpykwBapYZQjwPvmHA0uSK6c3q5J31u4KcQCOZqIVpkSVT7aKUh0hxy0/9QAZL
+4E6My8fAjE4yUFJXxvZIIko30pFWb2apxXYPgP1BSvS5WwuOY5M+g9B7bRh/gJxH
+hs2Bh7TCEUXCzLDFYGRuX2JgM5MnrRgDFRlRduAj3SjDdnrqEqSTGMOZv8XoWRyF
+Tnl7FsuBqUEOqUFAVytNGdPNcJvTdwF3a+OhPsBUbFqLy+Py4gmglpqJICmQ4Un+
+nFsIzShiK4N8taPNoo/LdO3Eln9CeqqKISCaLSC6QdPPUK6kOgzn3Ab5tl9k4D/b
+3visEPIwQyUdnwScwmDG6yQNq+eW/PA+kIoewT3crnVZZABvFQc=
+=YYTe
+-END PGP SIGNATURE-

Added: 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.sha512
==
--- 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.sha512
 (added)
+++ 
dev/netbeans/netbeans-maven-utilities/nb-repository-plugin/nb-repository-plugin-1.7/nb-repository-plugin-1.7-source-release.zip.sha512
 Tue May 31 16:31:52 2022
@@ -0,0 +1 @@
+7ff78a88a2364d358c83664b3b2e69689f6a7fc5f47ff9b7a85ecfe0cd448688df9c1ebbf515c2e5a2c9695c358be2539fa93c72e0e5438f7b087beac74c8bc6
  nb-repository-plugin-1.7-source-release.zip

Added: 
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip
==
Binary file - no diff available.

Propchange: 
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip.asc
==
--- 
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip.asc
 (added)
+++ 
dev/netbeans/netbeans-maven-utilities/nbm-maven-plugin/nbm-maven-plugin-4.8/nbm-maven-plugin-4.8-source-release.zip.asc
 Tue May 31 16:31:52 2022
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEj+HCbxXgMg50C67YSiYBztqTgvMFAmKWQBUACgkQSiYBztqT
+gvNuXA/+I5CT7YW6vR5RJSBUtP8MTNgX7oFPyG8jVWuQwBiFXNlXmPqwuATPLHp0
+4ogdgIeQHvkRg2tGvmsUd1+1Eu8kjhM6UHOyWqbleI11sCbuxbVMklATr

[jira] [Commented] (NETBEANS-6180) Improve PSR-4 Namespace rules

2022-05-31 Thread Junichi Yamamoto (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17544650#comment-17544650
 ] 

Junichi Yamamoto commented on NETBEANS-6180:


It seems that the attached project is empty...

> Improve PSR-4 Namespace rules
> -
>
> Key: NETBEANS-6180
> URL: https://issues.apache.org/jira/browse/NETBEANS-6180
> Project: NetBeans
>  Issue Type: Improvement
>  Components: php - Editor
>Affects Versions: 12.5
>Reporter: Alessio Ferri
>Priority: Minor
> Attachments: test.zip
>
>
> PSR-4 require namespace corrispondence to the directory structure only for 
> the contiguos subnamespaces after the namespace prefix. There should be a 
> method to set/infer the namespace prefix of the project.
> https://www.php-fig.org/psr/psr-4 2.3.2. See section 3 for examples



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven-maven-artifact-manager-2.2.1 created (now 466631b)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven-maven-artifact-manager-2.2.1
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 466631b  Bump maven-artifact-manager from 2.0.5 to 2.2.1

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven-maven-profile-2.2.1 created (now fdf9d7a)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven-maven-profile-2.2.1
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at fdf9d7a  Bump maven-profile from 2.0.5 to 2.2.1

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nbm-maven-plugin] branch dependabot/maven/master/org.apache.maven-maven-project-2.2.1 created (now 94d29ef)

2022-05-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/master/org.apache.maven-maven-project-2.2.1
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git


  at 94d29ef  Bump maven-project from 2.0.5 to 2.2.1

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists