[netbeans] branch master updated: Rust: More precise parser error markings in the Editor

2023-07-27 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

lkishalmi 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 9bc15b1fd0 Rust: More precise parser error markings in the Editor
9bc15b1fd0 is described below

commit 9bc15b1fd039fdf08eda7ea81fe1ce5c5a33eaa2
Author: Laszlo Kishalmi 
AuthorDate: Wed Jul 26 17:55:02 2023 -0700

Rust: More precise parser error markings in the Editor
---
 .../src/org/netbeans/modules/rust/grammar/ast/RustAST.java| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/rust/rust.grammar/src/org/netbeans/modules/rust/grammar/ast/RustAST.java 
b/rust/rust.grammar/src/org/netbeans/modules/rust/grammar/ast/RustAST.java
index 52eb050961..5ed3b9f750 100644
--- a/rust/rust.grammar/src/org/netbeans/modules/rust/grammar/ast/RustAST.java
+++ b/rust/rust.grammar/src/org/netbeans/modules/rust/grammar/ast/RustAST.java
@@ -103,9 +103,9 @@ public final class RustAST {
 if (offendingSymbol instanceof Token) {
 Token offendingToken = (Token) offendingSymbol;
 errorStartIndex = offendingToken.getStartIndex();
-errorStopIndex = offendingToken.getStopIndex();
+errorStopIndex = offendingToken.getStopIndex() + 1;
 }
-errors.add(new DefaultError(null, msg, null, fileObject, 
errorStartIndex, errorStopIndex, Severity.ERROR));
+errors.add(new DefaultError(null, msg, null, fileObject, 
errorStartIndex, errorStopIndex, errorStartIndex != errorStopIndex, 
Severity.ERROR));
 }
 }
 
@@ -127,8 +127,8 @@ public final class RustAST {
 String msg = sb.toString();
 RecognitionException ex = new RecognitionException(msg, 
recognizer, recognizer.getInputStream(), recognizer.getContext());
 int start = e.getOffendingToken().getStartIndex();
-int stop = e.getOffendingToken().getStopIndex();
-errors.add(new DefaultError(null, msg, null, fileObject, start, 
stop, Severity.ERROR));
+int stop = e.getOffendingToken().getStopIndex() + 1;
+errors.add(new DefaultError(null, msg, null, fileObject, start, 
stop, false, Severity.ERROR));
 }
 
 }


-
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: Code completion modified to support JDK 21 features.

2023-07-27 Thread dbalek
This is an automated email from the ASF dual-hosted git repository.

dbalek 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 29a9e0dc0e Code completion modified to support JDK 21 features.
 new 1be485f563 Merge pull request #6253 from dbalek/dbalek/jsva-cc-21
29a9e0dc0e is described below

commit 29a9e0dc0eb18286fabbcc9137399154df18447e
Author: Dusan Balek 
AuthorDate: Tue Jul 25 16:36:15 2023 +0200

Code completion modified to support JDK 21 features.
---
 .../netbeans/modules/java/completion/BaseTask.java |  44 +
 .../java/completion/JavaCompletionTask.java| 208 +
 ...Completion_CaseBody_PatternMatchingSwitch.pass} |  45 +
 ...pletion_CaseLabels_PatternMatchingSwitch_1.pass |   3 +-
 ...pletion_CaseLabels_PatternMatchingSwitch_2.pass | 101 --
 ...pletion_CaseLabels_PatternMatchingSwitch_3.pass | 100 --
 .../1.8/AutoCompletion_CaseRecordPattern_1.pass|   1 +
 .../1.8/AutoCompletion_CaseRecordPattern_2.pass|  13 ++
 .../1.8/AutoCompletion_CaseRecordPattern_3.pass|   2 +
 .../1.8/AutoCompletion_CaseRecordPattern_4.pass|  15 ++
 ...oCompletion_Guard_PatternMatchingSwitch_1.pass} |  27 ++-
 ...mbersSelect_GuardedPatternMatchingSwitch_2.pass |  48 -
 ...sSelect_ParenthesizedPatternMatchingSwitch.pass |  39 
 ...elect_ParenthesizedPatternMatchingSwitch_1.pass |  60 --
 .../1.8/AutoCompletion_RecordPattern_3.pass|   3 +-
 .../1.8/AutoCompletion_RecordPattern_4.pass|   7 +
 .../AutoCompletion_RecordPattern_5.pass}   |   0
 ...on_VarNameSuggestion_PatternMatchingSwitch.pass |   5 +-
 ...pletion_CaseLabels_PatternMatchingSwitch_1.pass |   3 +-
 ...sSelect_ParenthesizedPatternMatchingSwitch.pass |  40 
 ...elect_ParenthesizedPatternMatchingSwitch_1.pass |  61 --
 ...sSelect_ParenthesizedPatternMatchingSwitch.pass |  40 
 ...elect_ParenthesizedPatternMatchingSwitch_1.pass |  61 --
 ...pletion_CaseLabels_PatternMatchingSwitch_1.pass |   3 +-
 ...pletion_CaseLabels_PatternMatchingSwitch_2.pass | 112 ---
 ...pletion_CaseLabels_PatternMatchingSwitch_3.pass | 111 ---
 ...pletion_CaseLabels_PatternMatchingSwitch_1.pass |   3 +-
 ...pletion_CaseLabels_PatternMatchingSwitch_2.pass | 112 ---
 ...pletion_CaseLabels_PatternMatchingSwitch_3.pass | 111 ---
 ...mbersSelect_GuardedPatternMatchingSwitch_2.pass |  51 -
 ...sSelect_ParenthesizedPatternMatchingSwitch.pass |  40 
 ...elect_ParenthesizedPatternMatchingSwitch_1.pass |  62 --
 ...on_VarNameSuggestion_PatternMatchingSwitch.pass |   2 -
 ...pletion_CaseLabels_PatternMatchingSwitch_1.pass |   1 -
 ...pletion_CaseLabels_PatternMatchingSwitch_2.pass | 114 ---
 ...pletion_CaseLabels_PatternMatchingSwitch_3.pass | 113 ---
 .../19/AutoCompletion_CaseRecordPattern_4.pass |  15 ++
 ...AutoCompletion_Guard_PatternMatchingSwitch.pass |   1 -
 ...mbersSelect_GuardedPatternMatchingSwitch_2.pass |  51 -
 ...sSelect_ParenthesizedPatternMatchingSwitch.pass |  40 
 ...elect_ParenthesizedPatternMatchingSwitch_1.pass |  62 --
 .../19/AutoCompletion_RecordPattern_1.pass |   1 -
 .../19/AutoCompletion_RecordPattern_2.pass |   1 -
 ...PatternMatching.java => InstanceofPattern.java} |  24 +--
 .../completion/data/SwitchPatternMatching.java |  21 ++-
 .../JavaCompletionTask116FeaturesTest.java |  47 +
 .../JavaCompletionTask117FeaturesTest.java |  71 ---
 .../JavaCompletionTask119FeaturesTest.java |  61 --
 .../JavaCompletionTask121FeaturesTest.java | 123 
 .../editor/java/JavaCompletionCollector.java   |  43 -
 .../modules/editor/java/JavaCompletionItem.java|   7 +-
 51 files changed, 579 insertions(+), 1750 deletions(-)

diff --git 
a/java/java.completion/src/org/netbeans/modules/java/completion/BaseTask.java 
b/java/java.completion/src/org/netbeans/modules/java/completion/BaseTask.java
index a08521df2d..9242e63687 100644
--- 
a/java/java.completion/src/org/netbeans/modules/java/completion/BaseTask.java
+++ 
b/java/java.completion/src/org/netbeans/modules/java/completion/BaseTask.java
@@ -340,10 +340,32 @@ abstract class BaseTask extends UserTask {
 }
 if (lastCase != null) {
 stmts = lastCase.getStatements();
+if (stmts == null || stmts.isEmpty()) {
+Tree body = lastCase.getBody();
+if (body != null) {
+last = body;
+} else {
+Tree guard = lastCase.getGuard();
+if (guard != null) {
+last = guard;
+}
+ 

[netbeans-website] branch ebarboni-patch-1 created (now 996c3cd41)

2023-07-27 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch ebarboni-patch-1
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


  at 996c3cd41 adding menu button sample

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-nbpackage] branch master updated: Add Maven Wrapper (only-script) configured to use Maven 3.9.3.

2023-07-27 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 659673d  Add Maven Wrapper (only-script) configured to use Maven 3.9.3.
 new 8a94ba0  Merge pull request #38 from neilcsmith-net/maven-wrapper
659673d is described below

commit 659673d2706d7491f5140ad882b41f8f98b701f4
Author: Neil C Smith 
AuthorDate: Thu Jul 27 10:48:31 2023 +0100

Add Maven Wrapper (only-script) configured to use Maven 3.9.3.
---
 .github/workflows/test.yaml|   2 +-
 .../wrapper/maven-wrapper.properties   |  31 +--
 mvnw   | 239 +
 mvnw.cmd   | 145 +
 4 files changed, 388 insertions(+), 29 deletions(-)

diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 0395223..1e144ba 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -41,4 +41,4 @@ jobs:
 distribution: 'temurin'
 cache: maven
 - name: Build with Maven
-  run: mvn --batch-mode package
+  run: ./mvnw --batch-mode clean verify
diff --git a/.github/workflows/test.yaml b/.mvn/wrapper/maven-wrapper.properties
similarity index 54%
copy from .github/workflows/test.yaml
copy to .mvn/wrapper/maven-wrapper.properties
index 0395223..2c9faf6 100644
--- a/.github/workflows/test.yaml
+++ b/.mvn/wrapper/maven-wrapper.properties
@@ -14,31 +14,6 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-
-name: NBPackage
-
-on:
-  push:
-  pull_request:
-# unlocked event is used as super secret restart button
-types: [opened, synchronize, unlocked]
-
-jobs:
-  linux-build:
-name: Build and test on ${{ matrix.os }}, JDK ${{ matrix.java }}
-strategy:
-  matrix:
-java: [ '11', '17' ]
-os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
-runs-on: ${{ matrix.os }}
-
-steps:
-- uses: actions/checkout@v3
-- name: Set up JDK 
-  uses: actions/setup-java@v3
-  with:
-java-version: ${{ matrix.java }}
-distribution: 'temurin'
-cache: maven
-- name: Build with Maven
-  run: mvn --batch-mode package
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.3/apache-maven-3.9.3-bin.zip
+wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
+distributionSha256Sum=80b3b63df0e40ca8cde902bb1a40e4488ede24b3f282bd7bd6fba8eb5a7e055c
diff --git a/mvnw b/mvnw
new file mode 100755
index 000..633bbb7
--- /dev/null
+++ b/mvnw
@@ -0,0 +1,239 @@
+#!/bin/sh
+# 
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# 
+
+# 
+# Apache Maven Wrapper startup batch script, version 3.2.0
+#
+# Optional ENV vars
+# -
+#   JAVA_HOME - location of a JDK home dir, required when download maven via 
java source
+#   MVNW_REPOURL - repo url base for downloading maven distribution
+#   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
+#   MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; 
others: silence the output
+# 
+
+set -euf
+[ "${MVNW_VERBOSE-}" != debug ] || set -x
+
+# OS specific support.
+native_path() { printf %s\\n "$1"; }
+case "$(uname)" in
+(CYGWIN*|MINGW*) [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix 
"$JAVA_HOME")"
+ native_path() { cygpath --path --windows "$1"; } ;;
+esac
+
+# set JAVACMD and JAVACCMD
+set_java_home() {
+  # For Cygwin and MinGW, ensure paths are in Unix format before anything is 
touched
+  if [ -n "${JAVA_HOME-}" ] ; then
+if [ -x "$JAVA_HOME/jre/sh/java" ] ; 

[netbeans] branch master updated (b79fd30b2e -> 119e442c45)

2023-07-27 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

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


from b79fd30b2e Merge pull request #6206 from lahodaj/jdk21
 add f954a246d8 Revert "Use resolve() method that actually throws 
exception. Respect remote repository chaching."
 add cd844223fc Merge pull request #6228 from 
mbien/revert-maven-embedder-commit_delivery
 add 88dcee788e Add support for GlassFish 7.0.6 - Add support of the 
MicroProfile REST Client - Add a new way to start GlassFish - Add support for 
using @Inject to inject REST artifacts - Bug fixes and updates of various 
components - Bump the GlassFish version in some tests
 add de8dde74c1 Merge pull request #6221 from pepness/glassfish706
 add 97438e5b35 Fix option import regression
 add 49b653966b Merge pull request #6220 from 
mbien/fix-option-import_delivery
 add 459c2d1511 Enable 'Rerun failed tests' button for JUnit5
 add a4a69824ad Merge pull request #6217 from 
Atrament666/fix_rerun_failed_button
 add a067bcb581 Avoid getting all types with an empty type name #6039
 add f052d630a9 Merge pull request #6237 from 
junichi11/php-gh-6039-fix-regression
 add 7d88fd1955 Investigate distribution sensitive ComputeImportsTest 
failures
 add d05aee81e3 Merge pull request #6235 from mbien/ci-change-coffee-brand
 add dbbe7979ca Add blank lines for formatting options(Between Use Types) 
when use statements are inserted by "Fix Imports" #6238
 add 62f8c1aac3 Improve the `sort` method
 add e83c2e7f11 Merge pull request #6242 from 
junichi11/php-gh-6238-uses-psr12-blank-line
 add ac29761846 Set DB environment for java+ as well as for java
 add 9032ecc28e Merge pull request #6248 from jhorvath/db-env
 add e2bff3b719 Upgrade Gradle Tooling API to 8.3-rc-1
 add 479bdef447 Merge pull request #6254 from 
lkishalmi/gradle-tooling-api-8.3-rc-1
 add 119e442c45 Merge pull request #6234 from apache/delivery

No new revisions were added by this update.

Summary of changes:
 .../modules/glassfish/common/Bundle.properties |   1 +
 .../modules/glassfish/common/ServerDetails.java|  14 +
 .../glassfish/tooling/admin/AdminFactory.java  |   1 +
 .../glassfish/tooling/data/GlassFishVersion.java   |  10 +-
 .../server/config/ConfigBuilderProvider.java   |   8 +-
 .../glassfish/tooling/admin/AdminFactoryTest.java  |   4 +-
 .../tooling/data/GlassFishVersionTest.java |   8 +-
 .../glassfish/tooling/utils/EnumUtilsTest.java |  26 +-
 .../api/execute/GradleDistributionManager.java |   2 +-
 extide/libs.gradle/external/binaries-list  |   2 +-
 ...txt => gradle-tooling-api-8.3-rc-1-license.txt} |   6 +-
 txt => gradle-tooling-api-8.3-rc-1-notice.txt} |   0
 extide/libs.gradle/nbproject/project.properties|   2 +-
 extide/libs.gradle/nbproject/project.xml   |   2 +-
 .../java/editor/imports/ComputeImportsTest.java|   4 +-
 .../vscode/src/dbConfigurationProvider.ts  |   6 +-
 java/java.lsp.server/vscode/src/extension.ts   |   5 +-
 .../modules/maven/embedder/MavenEmbedder.java  |  22 +-
 .../maven/junit/JUnitOutputListenerProvider.java   |  17 +-
 .../AbstractProjectClassPathImplTest.java  |   7 +-
 .../modules/php/editor/actions/FixUsesAction.java  |  21 +-
 .../php/editor/actions/FixUsesPerformer.java   |  93 ++--
 .../php/editor/actions/ImportDataCreator.java  |   5 +
 .../modules/php/editor/indent/FmtOptions.java  |   2 +-
 .../php/editor/parser/PHPDocCommentParser.java |  31 +-
 .../ReturnTypeArrayShapes01.pass   |   9 +
 .../ReturnTypeArrayShapes02.pass   |   9 +
 .../ReturnTypeGenerics01.pass  |   9 +
 .../ReturnTypeGenerics02.pass  |   9 +
 .../ReturnTypeGenerics03.pass  |   9 +
 .../ReturnTypeGenerics04.pass  |   9 +
 .../ReturnTypeGenerics05.pass  |   9 +
 .../ReturnTypeObjectShapes01.pass  |   9 +
 .../ReturnTypeObjectShapes02.pass  |   9 +
 .../testGH4609PSR12_GroupUses01.php}   |   0
 .../testGH4609PSR12_GroupUses01.php.fixUses}   |   0
 .../testGH4609PSR12_GroupUses02.php}   |   0
 .../testGH4609PSR12_GroupUses02.php.fixUses}   |   4 +-
 .../testGH4609PSR12_GroupUsesWithPSR12a01.php} |   0
 ...tGH4609PSR12_GroupUsesWithPSR12a01.php.fixUses} |   0
 .../testGH4609PSR12_GroupUsesWithPSR12a02.php} |   0
 ...tGH4609PSR12_GroupUsesWithPSR12a02.php.fixUses} |   2 +-
 .../testGH4609PSR12_GroupUsesWithPSR12b01.php} |   0
 ...tGH4609PSR12_GroupUsesWithPSR12b01.php.fixUses} |   0
 .../testGH4609PSR12_GroupUsesWithPSR12b02.php} |   0
 ...tGH4609PSR12_GroupUsesWithPSR12b02.php.fixUses} |   1 -
 .../testGH4609PSR12_GroupUsesWithPSR12c01.php} |   0
 ...tGH4609PSR12_GroupUsesWithPSR12c01.php.fixUses} |   0
 

[netbeans-website] branch master updated: use html extension in template

2023-07-27 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-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 9fb1b9fb2 use html extension in template
9fb1b9fb2 is described below

commit 9fb1b9fb2f46aa4bff034f2cfc4ac913fa53f854
Author: Eric Barboni 
AuthorDate: Thu Jul 27 11:23:38 2023 +0200

use html extension in template
---
 netbeans.apache.org/src/content/templates/templatesparts/wiki-index.gsp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/netbeans.apache.org/src/content/templates/templatesparts/wiki-index.gsp 
b/netbeans.apache.org/src/content/templates/templatesparts/wiki-index.gsp
index d368693a5..bd43775a1 100644
--- a/netbeans.apache.org/src/content/templates/templatesparts/wiki-index.gsp
+++ b/netbeans.apache.org/src/content/templates/templatesparts/wiki-index.gsp
@@ -19,6 +19,6 @@
 
 */%>
 
-Apache NetBeans 
Wiki Index
+Apache NetBeans 
Wiki Index
 Note: These pages are being reviewed.
 


-
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] annotated tag 19-rc3 updated (9e004a08c6 -> 12ed68ce83)

2023-07-27 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a change to annotated tag 19-rc3
in repository https://gitbox.apache.org/repos/asf/netbeans.git


*** WARNING: tag 19-rc3 was modified! ***

from 9e004a08c6 (commit)
  to 12ed68ce83 (tag)
 tagging 9e004a08c61fd707f83fe7e6e6e746dd5a82d33f (commit)
 replaces 19-rc1
  by Neil C Smith
  on Thu Jul 27 10:14:22 2023 +0100

- Log -
Apache NetBeans 19-rc3
---


No new revisions were added by this update.

Summary of changes:


-
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-nbpackage] branch dependabot/maven/master/junit.jupiter.version-5.10.0 updated (5571dd0 -> de04f6b)

2023-07-27 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/junit.jupiter.version-5.10.0
in repository https://gitbox.apache.org/repos/asf/netbeans-nbpackage.git


 discard 5571dd0  Bump junit.jupiter.version from 5.9.3 to 5.10.0
 add 3edb8e3  better rendering for site
 add 4b077ef  Merge pull request #36 from ebarboni/mavensite
 add de04f6b  Bump junit.jupiter.version from 5.9.3 to 5.10.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5571dd0)
\
 N -- N -- N   
refs/heads/dependabot/maven/master/junit.jupiter.version-5.10.0 (de04f6b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 pom.xml   |  6 +-
 src/site/site.xml | 42 ++
 2 files changed, 47 insertions(+), 1 deletion(-)
 create mode 100644 src/site/site.xml


-
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-nbpackage] branch master updated: better rendering for site

2023-07-27 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-nbpackage.git


The following commit(s) were added to refs/heads/master by this push:
 new 3edb8e3  better rendering for site
 new 4b077ef  Merge pull request #36 from ebarboni/mavensite
3edb8e3 is described below

commit 3edb8e35a71b8effaaa39d88c053b8dc81775fea
Author: Eric Barboni 
AuthorDate: Wed Jul 26 18:21:03 2023 +0200

better rendering for site
---
 pom.xml   |  6 +-
 src/site/site.xml | 42 ++
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8faf788..c31d0eb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,7 +32,7 @@ under the License.
   jar
   
   Apache NetBeans NBPackage
-  https://netbeans.apache.org
+  https://bits.netbeans.org/nbpackage/
   Apache NetBeans packaging utility.
   
   
@@ -213,6 +213,7 @@ under the License.
   
 org.apache.maven.plugins
 maven-site-plugin
+4.0.0-M9
 
   ${project.distributionManagement.site.url}
 
@@ -237,5 +238,8 @@ under the License.
   
 UTF-8
 5.9.3
+org.apache.maven.skins
+maven-fluido-skin
+2.0.0-M6
   
 
diff --git a/src/site/site.xml b/src/site/site.xml
new file mode 100644
index 000..8a3c346
--- /dev/null
+++ b/src/site/site.xml
@@ -0,0 +1,42 @@
+
+
+http://maven.apache.org/DECORATION/1.8.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 
https://maven.apache.org/xsd/decoration-1.8.0.xsd; combine.self="override">
+
+${skin.groupId}
+${skin.artifactId}
+${skin.version}
+
+
+
+
+
+https://netbeans.apache.org "/>
+
+
+
+
+
+true
+
+apache/netbeans-nbpackage
+right
+black
+
+
+
+


-
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