[pmd-commits] [pmd/build-tools] 07022c: Custom surefire-provider for junit platform

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/build-tools
  Commit: 07022c5a6f4461263a25e7434f356fbbb290d702
  
https://github.com/pmd/build-tools/commit/07022c5a6f4461263a25e7434f356fbbb290d702
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M pom.xml
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/JUnitPlatformProvider.java
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/RootContainer.java
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java
A 
src/main/resources/META-INF/services/org.apache.maven.surefire.api.provider.SurefireProvider
A 
src/test/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListenerTest.java

  Log Message:
  ---
  Custom surefire-provider for junit platform

This provider reports only one test set by test class,
accumulating all tests that belong together. Furthermore,
the unique id of the tests are used as method names to be
sure that no two test cases have the same name, so that
surefire's run statistics work correctly.

It fails any test set (aka. test class) if there were
no test cases reported.


  Commit: 0e66f6053a395d44747244b3df7ba47458fbc678
  
https://github.com/pmd/build-tools/commit/0e66f6053a395d44747244b3df7ba47458fbc678
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/JUnitPlatformProvider.java
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java

  Log Message:
  ---
  Capture test outputs


  Commit: 717db37dccc6b8747c372f7f6fd138e856f07429
  
https://github.com/pmd/build-tools/commit/717db37dccc6b8747c372f7f6fd138e856f07429
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/RootContainer.java
M 
src/test/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListenerTest.java

  Log Message:
  ---
  Ignore empty junit suites


  Commit: 9b6ed437541d169db0099b815c9f41ff36a54c11
  
https://github.com/pmd/build-tools/commit/9b6ed437541d169db0099b815c9f41ff36a54c11
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Downgrade junit to match pmd/pmd


  Commit: 23d8f1ae59df0db51a83f2aa19d5dd06ce75d2d9
  
https://github.com/pmd/build-tools/commit/23d8f1ae59df0db51a83f2aa19d5dd06ce75d2d9
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java

  Log Message:
  ---
  Report full class name for test sets


  Commit: bb66782ae95176cc63a5e021b2384b5cfc256b44
  
https://github.com/pmd/build-tools/commit/bb66782ae95176cc63a5e021b2384b5cfc256b44
  Author: Andreas Dangel 
  Date:   2024-05-30 (Thu, 30 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java

  Log Message:
  ---
  Fallback to class name from UniqueId


  Commit: 3fd3ab6d31834ad5ba04abe6487cb6fdaf12286b
  
https://github.com/pmd/build-tools/commit/3fd3ab6d31834ad5ba04abe6487cb6fdaf12286b
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/JUnitPlatformProvider.java

  Log Message:
  ---
  Only create one TestPlan to speed up test execution


  Commit: 9a6e2f1832d2f3e22d05d30334c7a19b1371aa67
  
https://github.com/pmd/build-tools/commit/9a6e2f1832d2f3e22d05d30334c7a19b1371aa67
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java

  Log Message:
  ---
  Track elapsed times for tests, only add a StackTraceWriter when needed


  Commit: 717145f259fa9db90aeab816c13caeba6c0610d7
  
https://github.com/pmd/build-tools/commit/717145f259fa9db90aeab816c13caeba6c0610d7
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/JUnitPlatformProvider.java
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/RootContainer.java
A 
src/main/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListener.java
A 
src/main/resources/META-INF/services/org.apache.maven.surefire.api.provider.SurefireProvider
A 
src/test/java/net/sourceforge/pmd/buildtools/surefire/junit/TestExecutionListenerTest.java

  Log Message:
  ---
  Custom surefire-provider for junit platform (#32)

Merge pull request #32 from adangel:surefire-provider


Compare: https://github.com/pmd/build-tools/compare/e6493af8ca24...717145f259fa

To un

[pmd-commits] [pmd/build-tools] d4ab96: Update PMD-code-style.xml

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/build-tools
  Commit: d4ab96ae2d32530ab1bce21e5204f5860e2db092
  
https://github.com/pmd/build-tools/commit/d4ab96ae2d32530ab1bce21e5204f5860e2db092
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M intellij-idea/PMD-code-style.xml

  Log Message:
  ---
  Update PMD-code-style.xml


  Commit: 1a762518e54388fe5ea5c1eb7899880cf5f09bcc
  
https://github.com/pmd/build-tools/commit/1a762518e54388fe5ea5c1eb7899880cf5f09bcc
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare release 25


Compare: https://github.com/pmd/build-tools/compare/717145f259fa...1a762518e543

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/build-tools/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/build-tools]

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/tags/25
  Home:   https://github.com/pmd/build-tools

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/build-tools/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/build-tools] 066f7d: [maven-release-plugin] prepare for next developmen...

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/build-tools
  Commit: 066f7d44bcd9c368139ef1ad0ab98baaab483c09
  
https://github.com/pmd/build-tools/commit/066f7d44bcd9c368139ef1ad0ab98baaab483c09
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare for next development iteration



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/build-tools/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-designer] 32c866: Bump build-tools from 24 to 25

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-designer
  Commit: 32c866c92a3d1fee02298fd6d421196689b7e954
  
https://github.com/pmd/pmd-designer/commit/32c866c92a3d1fee02298fd6d421196689b7e954
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M .github/workflows/build.yml
M pom.xml

  Log Message:
  ---
  Bump build-tools from 24 to 25



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-designer/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-designer] 39b7cf: [doc] Update release notes for 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-designer
  Commit: 39b7cf67cb9f356e42c4bba713e5b773a2052933
  
https://github.com/pmd/pmd-designer/commit/39b7cf67cb9f356e42c4bba713e5b773a2052933
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M CHANGELOG.md

  Log Message:
  ---
  [doc] Update release notes for 7.2.0


  Commit: 32bd9b95459de5056a83780fe673397d65bacff2
  
https://github.com/pmd/pmd-designer/commit/32bd9b95459de5056a83780fe673397d65bacff2
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare release 7.2.0


Compare: https://github.com/pmd/pmd-designer/compare/32c866c92a3d...32bd9b95459d

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-designer/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-designer] 3e3e4b: [maven-release-plugin] prepare for next developmen...

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-designer
  Commit: 3e3e4bb6e645cb7fbd8f6de38d9dace870f029e1
  
https://github.com/pmd/pmd-designer/commit/3e3e4bb6e645cb7fbd8f6de38d9dace870f029e1
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  [maven-release-plugin] prepare for next development iteration



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-designer/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-designer]

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/tags/7.2.0
  Home:   https://github.com/pmd/pmd-designer

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-designer/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-designer] 9fbead: [doc] Update release notes for next version

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-designer
  Commit: 9fbeadda7d727a6a61f8d77bf19c7a6192acd454
  
https://github.com/pmd/pmd-designer/commit/9fbeadda7d727a6a61f8d77bf19c7a6192acd454
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M CHANGELOG.md

  Log Message:
  ---
  [doc] Update release notes for next version



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-designer/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 02cb57: Fix #1619 - LocalVariableCouldBeFinal FP with loops

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: 02cb5701fadbfe387bdb86c616f9e40307eb5c55
  https://github.com/pmd/pmd/commit/02cb5701fadbfe387bdb86c616f9e40307eb5c55
  Author: Clément Fournier 
  Date:   2024-05-11 (Sat, 11 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/JavaAstUtils.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/LocalVariableCouldBeFinalRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/MethodArgumentCouldBeFinalRule.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/LocalVariableCouldBeFinal.xml

  Log Message:
  ---
  Fix #1619 - LocalVariableCouldBeFinal FP with loops


  Commit: c140acd8f94013fc5cb142449c25570f9859180c
  https://github.com/pmd/pmd/commit/c140acd8f94013fc5cb142449c25570f9859180c
  Author: Clément Fournier 
  Date:   2024-05-11 (Sat, 11 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/JavaAstUtils.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/LocalVariableCouldBeFinalRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/MethodArgumentCouldBeFinalRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/internal/DataflowPass.java
M 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/rule/internal/DataflowPassTest.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/LocalVariableCouldBeFinal.xml

  Log Message:
  ---
  Fix #3122 - LocalVariableCouldBeFinal should consider blank local variables


  Commit: 7f0d148a1ba64fa8e66654a838527c1a78293ca2
  https://github.com/pmd/pmd/commit/7f0d148a1ba64fa8e66654a838527c1a78293ca2
  Author: Clément Fournier 
  Date:   2024-05-11 (Sat, 11 May 2024)

  Changed paths:
M pmd-core/src/main/java/net/sourceforge/pmd/util/DataMap.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTAssignableExpr.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/design/SingularFieldRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/internal/DataflowPass.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/LocalVariableCouldBeFinal.xml

  Log Message:
  ---
  Fix FPs


  Commit: fc24eced58a851b0b4266ce6099033616e89c83a
  https://github.com/pmd/pmd/commit/fc24eced58a851b0b4266ce6099033616e89c83a
  Author: Clément Fournier 
  Date:   2024-05-14 (Tue, 14 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UnnecessaryBoxingRule.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UnnecessaryBoxing.xml

  Log Message:
  ---
  Fix #4903 - UnnecessaryBoxing where explicit conversion is necessary


  Commit: 625fb36b14ecb450519506743471ed2f51278f48
  https://github.com/pmd/pmd/commit/625fb36b14ecb450519506743471ed2f51278f48
  Author: Clément Fournier 
  Date:   2024-05-14 (Tue, 14 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/JavaAstUtils.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UnnecessaryBoxingRule.java
M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/TypeOps.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/ast/ExprContext.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/ast/internal/PolyResolution.java
M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/types/ast/ConversionContextTests.kt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UnnecessaryBoxing.xml

  Log Message:
  ---
  Fix #4924 - UnnecessaryBoxing FP in lambda

Change a bit the behavior for some test cases.
Previously the rule reported necessary boxing
that could be simplified another way, but that
is an edge case and not worth complexifying
the rule


  Commit: eb17c9aab73bdb7ce1f1c11993fdf1befc0a2311
  https://github.com/pmd/pmd/commit/eb17c9aab73bdb7ce1f1c11993fdf1befc0a2311
  Author: Clément Fournier 
  Date:   2024-05-15 (Wed, 15 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UnnecessaryBoxingRule.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UnnecessaryBoxing.xml

  Log Message:
  ---
  Fix many problems with UnnecessaryBoxing


  Commit: ed18c9d746a815f29c6d7a311d3f74d0f5a5e878
  https://github.com/pmd/pmd/commit/ed18c9d746a815f29c6d7a311d3f74d0f5a5e878
  Author: Clément Fournier 
  Date:   2024-05-16 (Thu, 16 May 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UnnecessaryBoxingRule.java

  Log Message:
  ---
  Fix PMD warning

[pmd-commits] [pmd/pmd] e27b30: Bump pmd-designer from 7.2.0-SNAPSHOT to 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: e27b30e0b52229f66c5dae8aab0c2b95d877a135
  https://github.com/pmd/pmd/commit/e27b30e0b52229f66c5dae8aab0c2b95d877a135
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pom.xml

  Log Message:
  ---
  Bump pmd-designer from 7.2.0-SNAPSHOT to 7.2.0



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin] 1dd569: Bump build-tools from 24 to 25

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-eclipse-plugin
  Commit: 1dd569ffa479c8061adf430f3e2726aca5442822
  
https://github.com/pmd/pmd-eclipse-plugin/commit/1dd569ffa479c8061adf430f3e2726aca5442822
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M .github/actions/setup/action.yml
M pom.xml

  Log Message:
  ---
  Bump build-tools from 24 to 25



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin-p2-site] e5ac2b: Update pmd/pmd-eclipse-plugin-p2-site

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd-eclipse-plugin-p2-site
  Commit: e5ac2b34b263e36441ae0f8d00243e91675d2fc7
  
https://github.com/pmd/pmd-eclipse-plugin-p2-site/commit/e5ac2b34b263e36441ae0f8d00243e91675d2fc7
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
A 7.0.0.v20230502-1028-rc2/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230502-1028-rc2/META-INF/ECLIPSE-.SF
A 7.0.0.v20230502-1028-rc2/META-INF/MANIFEST.MF
A 7.0.0.v20230502-1028-rc2/artifacts.jar
A 7.0.0.v20230502-1028-rc2/artifacts.xml.xz
A 7.0.0.v20230502-1028-rc2/content.jar
A 7.0.0.v20230502-1028-rc2/content.xml.xz
A 
7.0.0.v20230502-1028-rc2/features/net.sourceforge.pmd.eclipse_7.0.0.v20230502-1028-rc2.jar
A 7.0.0.v20230502-1028-rc2/index.md
A 7.0.0.v20230502-1028-rc2/p2.index
A 
7.0.0.v20230502-1028-rc2/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230502-1028-rc2.jar
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.SF
A 7.0.0.v20230530-1924-rc3/META-INF/MANIFEST.MF
A 7.0.0.v20230530-1924-rc3/artifacts.jar
A 7.0.0.v20230530-1924-rc3/artifacts.xml.xz
A 7.0.0.v20230530-1924-rc3/content.jar
A 7.0.0.v20230530-1924-rc3/content.xml.xz
A 
7.0.0.v20230530-1924-rc3/features/net.sourceforge.pmd.eclipse_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230530-1924-rc3/index.md
A 7.0.0.v20230530-1924-rc3/p2.index
A 
7.0.0.v20230530-1924-rc3/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.SF
A 7.0.0.v20230930-1814-rc4/META-INF/MANIFEST.MF
A 7.0.0.v20230930-1814-rc4/artifacts.jar
A 7.0.0.v20230930-1814-rc4/artifacts.xml.xz
A 7.0.0.v20230930-1814-rc4/content.jar
A 7.0.0.v20230930-1814-rc4/content.xml.xz
A 
7.0.0.v20230930-1814-rc4/features/net.sourceforge.pmd.eclipse_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20230930-1814-rc4/index.md
A 7.0.0.v20230930-1814-rc4/p2.index
A 
7.0.0.v20230930-1814-rc4/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.RSA
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.SF
A 7.0.0.v20240322-0920-r/META-INF/MANIFEST.MF
A 7.0.0.v20240322-0920-r/artifacts.jar
A 7.0.0.v20240322-0920-r/artifacts.xml.xz
A 7.0.0.v20240322-0920-r/content.jar
A 7.0.0.v20240322-0920-r/content.xml.xz
A 
7.0.0.v20240322-0920-r/features/net.sourceforge.pmd.eclipse_7.0.0.v20240322-0920-r.jar
A 7.0.0.v20240322-0920-r/index.md
A 7.0.0.v20240322-0920-r/p2.index
A 
7.0.0.v20240322-0920-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20240322-0920-r.jar
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.RSA
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.SF
A 7.1.0.v20240426-0821-r/META-INF/MANIFEST.MF
A 7.1.0.v20240426-0821-r/artifacts.jar
A 7.1.0.v20240426-0821-r/artifacts.xml.xz
A 7.1.0.v20240426-0821-r/content.jar
A 7.1.0.v20240426-0821-r/content.xml.xz
A 
7.1.0.v20240426-0821-r/features/net.sourceforge.pmd.eclipse_7.1.0.v20240426-0821-r.jar
A 7.1.0.v20240426-0821-r/index.md
A 7.1.0.v20240426-0821-r/p2.index
A 
7.1.0.v20240426-0821-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.1.0.v20240426-0821-r.jar
A compositeArtifacts.xml
A compositeContent.xml
A index.md
A p2.index
A snapshot/META-INF/ECLIPSE-.RSA
A snapshot/META-INF/ECLIPSE-.SF
A snapshot/META-INF/MANIFEST.MF
A snapshot/artifacts.jar
A snapshot/artifacts.xml.xz
A snapshot/content.jar
A snapshot/content.xml.xz
A snapshot/features/net.sourceforge.pmd.eclipse_7.2.0.v20240531-0933.jar
A snapshot/index.md
A snapshot/p2.index
A 
snapshot/plugins/net.sourceforge.pmd.eclipse.plugin_7.2.0.v20240531-0933.jar

  Log Message:
  ---
  Update pmd/pmd-eclipse-plugin-p2-site



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin-p2-site/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 6e3033: Update documentation

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 6e3033f4b26f1151f6ba14283723e548880af340
  https://github.com/pmd/pmd/commit/6e3033f4b26f1151f6ba14283723e548880af340
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M 404.html
M feed.xml
M index.html
M license.html
M news.html
M news_archive.html
M pmd_about_help.html
M pmd_devdocs_building.html
M pmd_devdocs_development.html
M pmd_devdocs_how_pmd_works.html
M pmd_devdocs_logging.html
M pmd_devdocs_major_adding_new_cpd_language.html
M pmd_devdocs_major_adding_new_language_antlr.html
M pmd_devdocs_major_adding_new_language_javacc.html
M pmd_devdocs_major_rule_guidelines.html
M pmd_devdocs_pmdtester.html
M pmd_devdocs_roadmap.html
M pmd_devdocs_rule_deprecation_policy.html
M pmd_devdocs_writing_documentation.html
M pmd_languages_apex.html
M pmd_languages_coco.html
M pmd_languages_configuration.html
M pmd_languages_cpp.html
M pmd_languages_cs.html
M pmd_languages_dart.html
M pmd_languages_fortran.html
M pmd_languages_gherkin.html
M pmd_languages_go.html
M pmd_languages_groovy.html
M pmd_languages_html.html
M pmd_languages_index.html
M pmd_languages_java.html
M pmd_languages_js_ts.html
M pmd_languages_jsp.html
M pmd_languages_julia.html
M pmd_languages_kotlin.html
M pmd_languages_lua.html
M pmd_languages_matlab.html
M pmd_languages_modelica.html
M pmd_languages_objectivec.html
M pmd_languages_perl.html
M pmd_languages_php.html
M pmd_languages_plsql.html
M pmd_languages_python.html
M pmd_languages_ruby.html
M pmd_languages_scala.html
M pmd_languages_swift.html
M pmd_languages_tsql.html
M pmd_languages_velocity.html
M pmd_languages_visualforce.html
M pmd_languages_xml.html
M pmd_projectdocs_committers_infrastructure.html
M pmd_projectdocs_committers_main_landing_page.html
M pmd_projectdocs_committers_merging_pull_requests.html
M pmd_projectdocs_committers_releasing.html
M pmd_projectdocs_credits.html
M pmd_projectdocs_decisions.html
M pmd_projectdocs_decisions_adr_1.html
M pmd_projectdocs_decisions_adr_2.html
M pmd_projectdocs_decisions_adr_3.html
M pmd_projectdocs_decisions_adr_NNN.html
M pmd_projectdocs_faq.html
M pmd_projectdocs_logo.html
M pmd_projectdocs_trivia_meaning.html
M pmd_projectdocs_trivia_news.html
M pmd_projectdocs_trivia_products.html
M pmd_projectdocs_trivia_similarprojects.html
M pmd_release_notes.html
M pmd_release_notes_old.html
M pmd_release_notes_pmd7.html
M pmd_rules_apex.html
M pmd_rules_apex_bestpractices.html
M pmd_rules_apex_codestyle.html
M pmd_rules_apex_design.html
M pmd_rules_apex_documentation.html
M pmd_rules_apex_errorprone.html
M pmd_rules_apex_performance.html
M pmd_rules_apex_security.html
M pmd_rules_ecmascript.html
M pmd_rules_ecmascript_bestpractices.html
M pmd_rules_ecmascript_codestyle.html
M pmd_rules_ecmascript_errorprone.html
M pmd_rules_html.html
M pmd_rules_html_bestpractices.html
M pmd_rules_java.html
M pmd_rules_java_bestpractices.html
M pmd_rules_java_codestyle.html
M pmd_rules_java_design.html
M pmd_rules_java_documentation.html
M pmd_rules_java_errorprone.html
M pmd_rules_java_multithreading.html
M pmd_rules_java_performance.html
M pmd_rules_java_security.html
M pmd_rules_jsp.html
M pmd_rules_jsp_bestpractices.html
M pmd_rules_jsp_codestyle.html
M pmd_rules_jsp_design.html
M pmd_rules_jsp_errorprone.html
M pmd_rules_jsp_security.html
M pmd_rules_kotlin.html
M pmd_rules_kotlin_bestpractices.html
M pmd_rules_kotlin_errorprone.html
M pmd_rules_modelica.html
M pmd_rules_modelica_bestpractices.html
M pmd_rules_plsql.html
M pmd_rules_plsql_bestpractices.html
M pmd_rules_plsql_codestyle.html
M pmd_rules_plsql_design.html
M pmd_rules_plsql_errorprone.html
M pmd_rules_pom.html
M pmd_rules_pom_errorprone.html
M pmd_rules_scala.html
M pmd_rules_swift.html
M pmd_rules_swift_bestpractices.html
M pmd_rules_swift_errorprone.html
M pmd_rules_velocity.html
M pmd_rules_velocity_bestpractices.html
M pmd_rules_velocity_design.html
M pmd_rules_velocity_errorprone.html
M pmd_rules_visualforce.html
M pmd_rules_visualforce_security.html
M pmd_rules_xml.html
M pmd_rules_xml_bestpractices.html
M pmd_rules_xml_errorprone.html
M pmd_rules_xsl.html
M pmd_rules_xsl_codestyle.html
M pmd_rules_xsl_performance.html
M pmd_userdocs_3rdpartyrulesets.html
M pmd_userdocs_best_practices.html
M pmd_userdocs_cli_reference.html
M pmd_userdocs_configuring_rules.html
M pmd_userdocs_cpd.html
M pmd_userdocs_cpd_report_formats.html
M pmd_userdocs_extending_ast_du

[pmd-commits] [pmd/pmd] 043a8d: Update documentation

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 043a8d36d0bc22973bf0e7340ce7b65bd268ac11
  https://github.com/pmd/pmd/commit/043a8d36d0bc22973bf0e7340ce7b65bd268ac11
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M feed.xml

  Log Message:
  ---
  Update documentation

https://github.com/pmd/pmd/actions/runs/9315937509
https://github.com/pmd/pmd/compare/d37769e71c64...e27b30e0b522



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 27a14c: Prepare pmd release 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/tags/pmd_releases/7.2.0
  Home:   https://github.com/pmd/pmd
  Commit: 27a14cc61e4659447125422756e545fe2a7b96f0
  https://github.com/pmd/pmd/commit/27a14cc61e4659447125422756e545fe2a7b96f0
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M docs/_config.yml
M docs/pages/release_notes.md

  Log Message:
  ---
  Prepare pmd release 7.2.0


  Commit: 38bc997d4e7f4b29cee86829915f17f925211800
  https://github.com/pmd/pmd/commit/38bc997d4e7f4b29cee86829915f17f925211800
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pmd-ant/pom.xml
M pmd-apex/pom.xml
M pmd-cli/pom.xml
M pmd-coco/pom.xml
M pmd-compat6/pom.xml
M pmd-core/pom.xml
M pmd-cpp/pom.xml
M pmd-cs/pom.xml
M pmd-dart/pom.xml
M pmd-dist/pom.xml
M pmd-doc/pom.xml
M pmd-fortran/pom.xml
M pmd-gherkin/pom.xml
M pmd-go/pom.xml
M pmd-groovy/pom.xml
M pmd-html/pom.xml
M pmd-java/pom.xml
M pmd-javascript/pom.xml
M pmd-jsp/pom.xml
M pmd-julia/pom.xml
M pmd-kotlin/pom.xml
M pmd-lang-test/pom.xml
M pmd-languages-deps/pom.xml
M pmd-lua/pom.xml
M pmd-matlab/pom.xml
M pmd-modelica/pom.xml
M pmd-objectivec/pom.xml
M pmd-perl/pom.xml
M pmd-php/pom.xml
M pmd-plsql/pom.xml
M pmd-python/pom.xml
M pmd-ruby/pom.xml
M pmd-scala-modules/pmd-scala-common/pom.xml
M pmd-scala-modules/pmd-scala_2.12/pom.xml
M pmd-scala-modules/pmd-scala_2.13/pom.xml
M pmd-swift/pom.xml
M pmd-test-schema/pom.xml
M pmd-test/pom.xml
M pmd-tsql/pom.xml
M pmd-velocity/pom.xml
M pmd-visualforce/pom.xml
M pmd-xml/pom.xml
M pom.xml

  Log Message:
  ---
  [release] prepare release pmd_releases/7.2.0


Compare: https://github.com/pmd/pmd/compare/27a14cc61e46%5E...38bc997d4e7f

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 27a14c: Prepare pmd release 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: 27a14cc61e4659447125422756e545fe2a7b96f0
  https://github.com/pmd/pmd/commit/27a14cc61e4659447125422756e545fe2a7b96f0
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M docs/_config.yml
M docs/pages/release_notes.md

  Log Message:
  ---
  Prepare pmd release 7.2.0


  Commit: 38bc997d4e7f4b29cee86829915f17f925211800
  https://github.com/pmd/pmd/commit/38bc997d4e7f4b29cee86829915f17f925211800
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M pmd-ant/pom.xml
M pmd-apex/pom.xml
M pmd-cli/pom.xml
M pmd-coco/pom.xml
M pmd-compat6/pom.xml
M pmd-core/pom.xml
M pmd-cpp/pom.xml
M pmd-cs/pom.xml
M pmd-dart/pom.xml
M pmd-dist/pom.xml
M pmd-doc/pom.xml
M pmd-fortran/pom.xml
M pmd-gherkin/pom.xml
M pmd-go/pom.xml
M pmd-groovy/pom.xml
M pmd-html/pom.xml
M pmd-java/pom.xml
M pmd-javascript/pom.xml
M pmd-jsp/pom.xml
M pmd-julia/pom.xml
M pmd-kotlin/pom.xml
M pmd-lang-test/pom.xml
M pmd-languages-deps/pom.xml
M pmd-lua/pom.xml
M pmd-matlab/pom.xml
M pmd-modelica/pom.xml
M pmd-objectivec/pom.xml
M pmd-perl/pom.xml
M pmd-php/pom.xml
M pmd-plsql/pom.xml
M pmd-python/pom.xml
M pmd-ruby/pom.xml
M pmd-scala-modules/pmd-scala-common/pom.xml
M pmd-scala-modules/pmd-scala_2.12/pom.xml
M pmd-scala-modules/pmd-scala_2.13/pom.xml
M pmd-swift/pom.xml
M pmd-test-schema/pom.xml
M pmd-test/pom.xml
M pmd-tsql/pom.xml
M pmd-velocity/pom.xml
M pmd-visualforce/pom.xml
M pmd-xml/pom.xml
M pom.xml

  Log Message:
  ---
  [release] prepare release pmd_releases/7.2.0


  Commit: 28c6c8e1210e1c4591ba8aa1d0ae537a538eb104
  https://github.com/pmd/pmd/commit/28c6c8e1210e1c4591ba8aa1d0ae537a538eb104
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M docs/_config.yml
M docs/pages/release_notes.md
M docs/pages/release_notes_old.md
M pmd-ant/pom.xml
M pmd-apex/pom.xml
M pmd-cli/pom.xml
M pmd-coco/pom.xml
M pmd-compat6/pom.xml
M pmd-core/pom.xml
M pmd-cpp/pom.xml
M pmd-cs/pom.xml
M pmd-dart/pom.xml
M pmd-dist/pom.xml
M pmd-doc/pom.xml
M pmd-fortran/pom.xml
M pmd-gherkin/pom.xml
M pmd-go/pom.xml
M pmd-groovy/pom.xml
M pmd-html/pom.xml
M pmd-java/pom.xml
M pmd-javascript/pom.xml
M pmd-jsp/pom.xml
M pmd-julia/pom.xml
M pmd-kotlin/pom.xml
M pmd-lang-test/pom.xml
M pmd-languages-deps/pom.xml
M pmd-lua/pom.xml
M pmd-matlab/pom.xml
M pmd-modelica/pom.xml
M pmd-objectivec/pom.xml
M pmd-perl/pom.xml
M pmd-php/pom.xml
M pmd-plsql/pom.xml
M pmd-python/pom.xml
M pmd-ruby/pom.xml
M pmd-scala-modules/pmd-scala-common/pom.xml
M pmd-scala-modules/pmd-scala_2.12/pom.xml
M pmd-scala-modules/pmd-scala_2.13/pom.xml
M pmd-swift/pom.xml
M pmd-test-schema/pom.xml
M pmd-test/pom.xml
M pmd-tsql/pom.xml
M pmd-velocity/pom.xml
M pmd-visualforce/pom.xml
M pmd-xml/pom.xml
M pom.xml

  Log Message:
  ---
  [release] Prepare next development version [skip ci]


Compare: https://github.com/pmd/pmd/compare/e27b30e0b522...28c6c8e1210e

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd.github.io] 497a3a: Prepare pmd release 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd.github.io
  Commit: 497a3abeb717bfec49847d974753197e5cb548e2
  
https://github.com/pmd/pmd.github.io/commit/497a3abeb717bfec49847d974753197e5cb548e2
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M _config.yml
A _posts/2024-05-31-PMD-7.2.0.md

  Log Message:
  ---
  Prepare pmd release 7.2.0



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd.github.io/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin] 108568: Update to PMD 7.2.0

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd-eclipse-plugin
  Commit: 108568c26a37899a0035a43bcfd5eaf31043135d
  
https://github.com/pmd/pmd-eclipse-plugin/commit/108568c26a37899a0035a43bcfd5eaf31043135d
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M ReleaseNotes.md
M pom.xml

  Log Message:
  ---
  Update to PMD 7.2.0


  Commit: 4edbba0ac2817ccb65d7e4fabdc92cf6727d85d5
  
https://github.com/pmd/pmd-eclipse-plugin/commit/4edbba0ac2817ccb65d7e4fabdc92cf6727d85d5
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M ReleaseNotes.md
M net.sourceforge.pmd.eclipse.p2updatesite/pom.xml
M net.sourceforge.pmd.eclipse.plugin.test.fragment/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin.test.fragment/pom.xml
M net.sourceforge.pmd.eclipse.plugin.test/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin.test/pom.xml
M net.sourceforge.pmd.eclipse.plugin/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin/pom.xml
M net.sourceforge.pmd.eclipse/feature.xml
M net.sourceforge.pmd.eclipse/pom.xml
M pom.xml

  Log Message:
  ---
  Prepare release pmd-eclipse-plugin 7.2.0.v20240531-1152-r


  Commit: 76f07ca69fc1794a450700901371925956c6cad4
  
https://github.com/pmd/pmd-eclipse-plugin/commit/76f07ca69fc1794a450700901371925956c6cad4
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M ReleaseNotes.md
M net.sourceforge.pmd.eclipse.p2updatesite/pom.xml
M net.sourceforge.pmd.eclipse.plugin.test.fragment/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin.test.fragment/pom.xml
M net.sourceforge.pmd.eclipse.plugin.test/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin.test/pom.xml
M net.sourceforge.pmd.eclipse.plugin/META-INF/MANIFEST.MF
M net.sourceforge.pmd.eclipse.plugin/pom.xml
M net.sourceforge.pmd.eclipse/feature.xml
M net.sourceforge.pmd.eclipse/pom.xml
M pom.xml

  Log Message:
  ---
  Prepare next pmd-eclipse-plugin development version 7.3.0-SNAPSHOT


Compare: 
https://github.com/pmd/pmd-eclipse-plugin/compare/1dd569ffa479...76f07ca69fc1

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin]

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/tags/7.2.0.v20240531-1152-r
  Home:   https://github.com/pmd/pmd-eclipse-plugin

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin-p2-site] 591da1: Update pmd/pmd-eclipse-plugin-p2-site

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd-eclipse-plugin-p2-site
  Commit: 591da18c84c874f7ebce9ff236fda656996cf08f
  
https://github.com/pmd/pmd-eclipse-plugin-p2-site/commit/591da18c84c874f7ebce9ff236fda656996cf08f
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
A 7.0.0.v20230502-1028-rc2/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230502-1028-rc2/META-INF/ECLIPSE-.SF
A 7.0.0.v20230502-1028-rc2/META-INF/MANIFEST.MF
A 7.0.0.v20230502-1028-rc2/artifacts.jar
A 7.0.0.v20230502-1028-rc2/artifacts.xml.xz
A 7.0.0.v20230502-1028-rc2/content.jar
A 7.0.0.v20230502-1028-rc2/content.xml.xz
A 
7.0.0.v20230502-1028-rc2/features/net.sourceforge.pmd.eclipse_7.0.0.v20230502-1028-rc2.jar
A 7.0.0.v20230502-1028-rc2/index.md
A 7.0.0.v20230502-1028-rc2/p2.index
A 
7.0.0.v20230502-1028-rc2/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230502-1028-rc2.jar
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.SF
A 7.0.0.v20230530-1924-rc3/META-INF/MANIFEST.MF
A 7.0.0.v20230530-1924-rc3/artifacts.jar
A 7.0.0.v20230530-1924-rc3/artifacts.xml.xz
A 7.0.0.v20230530-1924-rc3/content.jar
A 7.0.0.v20230530-1924-rc3/content.xml.xz
A 
7.0.0.v20230530-1924-rc3/features/net.sourceforge.pmd.eclipse_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230530-1924-rc3/index.md
A 7.0.0.v20230530-1924-rc3/p2.index
A 
7.0.0.v20230530-1924-rc3/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.SF
A 7.0.0.v20230930-1814-rc4/META-INF/MANIFEST.MF
A 7.0.0.v20230930-1814-rc4/artifacts.jar
A 7.0.0.v20230930-1814-rc4/artifacts.xml.xz
A 7.0.0.v20230930-1814-rc4/content.jar
A 7.0.0.v20230930-1814-rc4/content.xml.xz
A 
7.0.0.v20230930-1814-rc4/features/net.sourceforge.pmd.eclipse_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20230930-1814-rc4/index.md
A 7.0.0.v20230930-1814-rc4/p2.index
A 
7.0.0.v20230930-1814-rc4/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.RSA
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.SF
A 7.0.0.v20240322-0920-r/META-INF/MANIFEST.MF
A 7.0.0.v20240322-0920-r/artifacts.jar
A 7.0.0.v20240322-0920-r/artifacts.xml.xz
A 7.0.0.v20240322-0920-r/content.jar
A 7.0.0.v20240322-0920-r/content.xml.xz
A 
7.0.0.v20240322-0920-r/features/net.sourceforge.pmd.eclipse_7.0.0.v20240322-0920-r.jar
A 7.0.0.v20240322-0920-r/index.md
A 7.0.0.v20240322-0920-r/p2.index
A 
7.0.0.v20240322-0920-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20240322-0920-r.jar
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.RSA
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.SF
A 7.1.0.v20240426-0821-r/META-INF/MANIFEST.MF
A 7.1.0.v20240426-0821-r/artifacts.jar
A 7.1.0.v20240426-0821-r/artifacts.xml.xz
A 7.1.0.v20240426-0821-r/content.jar
A 7.1.0.v20240426-0821-r/content.xml.xz
A 
7.1.0.v20240426-0821-r/features/net.sourceforge.pmd.eclipse_7.1.0.v20240426-0821-r.jar
A 7.1.0.v20240426-0821-r/index.md
A 7.1.0.v20240426-0821-r/p2.index
A 
7.1.0.v20240426-0821-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.1.0.v20240426-0821-r.jar
A compositeArtifacts.xml
A compositeContent.xml
A index.md
A p2.index
A snapshot/META-INF/ECLIPSE-.RSA
A snapshot/META-INF/ECLIPSE-.SF
A snapshot/META-INF/MANIFEST.MF
A snapshot/artifacts.jar
A snapshot/artifacts.xml.xz
A snapshot/content.jar
A snapshot/content.xml.xz
A snapshot/features/net.sourceforge.pmd.eclipse_7.3.0.v20240531-1155.jar
A snapshot/index.md
A snapshot/p2.index
A 
snapshot/plugins/net.sourceforge.pmd.eclipse.plugin_7.3.0.v20240531-1155.jar

  Log Message:
  ---
  Update pmd/pmd-eclipse-plugin-p2-site



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin-p2-site/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-eclipse-plugin-p2-site] 15a1b6: Update pmd/pmd-eclipse-plugin-p2-site

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd-eclipse-plugin-p2-site
  Commit: 15a1b659b6f9a42401373fe7b5331395c7dc65c2
  
https://github.com/pmd/pmd-eclipse-plugin-p2-site/commit/15a1b659b6f9a42401373fe7b5331395c7dc65c2
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.SF
A 7.0.0.v20230530-1924-rc3/META-INF/MANIFEST.MF
A 7.0.0.v20230530-1924-rc3/artifacts.jar
A 7.0.0.v20230530-1924-rc3/artifacts.xml.xz
A 7.0.0.v20230530-1924-rc3/content.jar
A 7.0.0.v20230530-1924-rc3/content.xml.xz
A 
7.0.0.v20230530-1924-rc3/features/net.sourceforge.pmd.eclipse_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230530-1924-rc3/index.md
A 7.0.0.v20230530-1924-rc3/p2.index
A 
7.0.0.v20230530-1924-rc3/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.SF
A 7.0.0.v20230930-1814-rc4/META-INF/MANIFEST.MF
A 7.0.0.v20230930-1814-rc4/artifacts.jar
A 7.0.0.v20230930-1814-rc4/artifacts.xml.xz
A 7.0.0.v20230930-1814-rc4/content.jar
A 7.0.0.v20230930-1814-rc4/content.xml.xz
A 
7.0.0.v20230930-1814-rc4/features/net.sourceforge.pmd.eclipse_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20230930-1814-rc4/index.md
A 7.0.0.v20230930-1814-rc4/p2.index
A 
7.0.0.v20230930-1814-rc4/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.RSA
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.SF
A 7.0.0.v20240322-0920-r/META-INF/MANIFEST.MF
A 7.0.0.v20240322-0920-r/artifacts.jar
A 7.0.0.v20240322-0920-r/artifacts.xml.xz
A 7.0.0.v20240322-0920-r/content.jar
A 7.0.0.v20240322-0920-r/content.xml.xz
A 
7.0.0.v20240322-0920-r/features/net.sourceforge.pmd.eclipse_7.0.0.v20240322-0920-r.jar
A 7.0.0.v20240322-0920-r/index.md
A 7.0.0.v20240322-0920-r/p2.index
A 
7.0.0.v20240322-0920-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20240322-0920-r.jar
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.RSA
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.SF
A 7.1.0.v20240426-0821-r/META-INF/MANIFEST.MF
A 7.1.0.v20240426-0821-r/artifacts.jar
A 7.1.0.v20240426-0821-r/artifacts.xml.xz
A 7.1.0.v20240426-0821-r/content.jar
A 7.1.0.v20240426-0821-r/content.xml.xz
A 
7.1.0.v20240426-0821-r/features/net.sourceforge.pmd.eclipse_7.1.0.v20240426-0821-r.jar
A 7.1.0.v20240426-0821-r/index.md
A 7.1.0.v20240426-0821-r/p2.index
A 
7.1.0.v20240426-0821-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.1.0.v20240426-0821-r.jar
A 7.2.0.v20240531-1152-r/META-INF/ECLIPSE-.RSA
A 7.2.0.v20240531-1152-r/META-INF/ECLIPSE-.SF
A 7.2.0.v20240531-1152-r/META-INF/MANIFEST.MF
A 7.2.0.v20240531-1152-r/artifacts.jar
A 7.2.0.v20240531-1152-r/artifacts.xml.xz
A 7.2.0.v20240531-1152-r/content.jar
A 7.2.0.v20240531-1152-r/content.xml.xz
A 
7.2.0.v20240531-1152-r/features/net.sourceforge.pmd.eclipse_7.2.0.v20240531-1152-r.jar
A 7.2.0.v20240531-1152-r/index.md
A 7.2.0.v20240531-1152-r/p2.index
A 
7.2.0.v20240531-1152-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.2.0.v20240531-1152-r.jar
A compositeArtifacts.xml
A compositeContent.xml
A index.md
A p2.index
A snapshot/META-INF/ECLIPSE-.RSA
A snapshot/META-INF/ECLIPSE-.SF
A snapshot/META-INF/MANIFEST.MF
A snapshot/artifacts.jar
A snapshot/artifacts.xml.xz
A snapshot/content.jar
A snapshot/content.xml.xz
A snapshot/features/net.sourceforge.pmd.eclipse_7.3.0.v20240531-1155.jar
A snapshot/index.md
A snapshot/p2.index
A 
snapshot/plugins/net.sourceforge.pmd.eclipse.plugin_7.3.0.v20240531-1155.jar

  Log Message:
  ---
  Update pmd/pmd-eclipse-plugin-p2-site



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin-p2-site/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd.github.io] 67d80e: PMD For Eclipse 7.2.0.v20240531-1152-r Released

2024-05-31 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd.github.io
  Commit: 67d80e45c18f8479eae799b0508cacea4fc9801b
  
https://github.com/pmd/pmd.github.io/commit/67d80e45c18f8479eae799b0508cacea4fc9801b
  Author: Andreas Dangel 
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
A _posts/2024-05-31-PMD-for-Eclipse-7.2.0.v20240531-1152-r-released.md

  Log Message:
  ---
  PMD For Eclipse 7.2.0.v20240531-1152-r Released



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd.github.io/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-github-action] f96764: Bump @types/node from 20.12.4 to 20.13.0

2024-05-31 Thread dependabot[bot] via Pmd-commits
  Branch: refs/heads/dependabot/npm_and_yarn/types/node-20.13.0
  Home:   https://github.com/pmd/pmd-github-action
  Commit: f96764177e33ca3a3fa27ebbe53589c471198f66
  
https://github.com/pmd/pmd-github-action/commit/f96764177e33ca3a3fa27ebbe53589c471198f66
  Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  Date:   2024-05-31 (Fri, 31 May 2024)

  Changed paths:
M package-lock.json
M package.json

  Log Message:
  ---
  Bump @types/node from 20.12.4 to 20.13.0

Bumps 
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
 from 20.12.4 to 20.13.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- 
[Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-github-action/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd-github-action]

2024-05-31 Thread dependabot[bot] via Pmd-commits
  Branch: refs/heads/dependabot/npm_and_yarn/types/node-20.12.13
  Home:   https://github.com/pmd/pmd-github-action

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-github-action/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 32b8fd: Update documentation

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 32b8fd078ba1252c6ba86bcb10b38d760d37c3d7
  https://github.com/pmd/pmd/commit/32b8fd078ba1252c6ba86bcb10b38d760d37c3d7
  Author: PMD CI (pmd-bot) 
  Date:   2024-06-01 (Sat, 01 Jun 2024)

  Changed paths:
M 404.html
M feed.xml
M index.html
M license.html
M news.html
M news_archive.html
M pmd_about_help.html
M pmd_devdocs_building.html
M pmd_devdocs_development.html
M pmd_devdocs_how_pmd_works.html
M pmd_devdocs_logging.html
M pmd_devdocs_major_adding_new_cpd_language.html
M pmd_devdocs_major_adding_new_language_antlr.html
M pmd_devdocs_major_adding_new_language_javacc.html
M pmd_devdocs_major_rule_guidelines.html
M pmd_devdocs_pmdtester.html
M pmd_devdocs_roadmap.html
M pmd_devdocs_rule_deprecation_policy.html
M pmd_devdocs_writing_documentation.html
M pmd_languages_apex.html
M pmd_languages_coco.html
M pmd_languages_configuration.html
M pmd_languages_cpp.html
M pmd_languages_cs.html
M pmd_languages_dart.html
M pmd_languages_fortran.html
M pmd_languages_gherkin.html
M pmd_languages_go.html
M pmd_languages_groovy.html
M pmd_languages_html.html
M pmd_languages_index.html
M pmd_languages_java.html
M pmd_languages_js_ts.html
M pmd_languages_jsp.html
M pmd_languages_julia.html
M pmd_languages_kotlin.html
M pmd_languages_lua.html
M pmd_languages_matlab.html
M pmd_languages_modelica.html
M pmd_languages_objectivec.html
M pmd_languages_perl.html
M pmd_languages_php.html
M pmd_languages_plsql.html
M pmd_languages_python.html
M pmd_languages_ruby.html
M pmd_languages_scala.html
M pmd_languages_swift.html
M pmd_languages_tsql.html
M pmd_languages_velocity.html
M pmd_languages_visualforce.html
M pmd_languages_xml.html
M pmd_projectdocs_committers_infrastructure.html
M pmd_projectdocs_committers_main_landing_page.html
M pmd_projectdocs_committers_merging_pull_requests.html
M pmd_projectdocs_committers_releasing.html
M pmd_projectdocs_credits.html
M pmd_projectdocs_decisions.html
M pmd_projectdocs_decisions_adr_1.html
M pmd_projectdocs_decisions_adr_2.html
M pmd_projectdocs_decisions_adr_3.html
M pmd_projectdocs_decisions_adr_NNN.html
M pmd_projectdocs_faq.html
M pmd_projectdocs_logo.html
M pmd_projectdocs_trivia_meaning.html
M pmd_projectdocs_trivia_news.html
M pmd_projectdocs_trivia_products.html
M pmd_projectdocs_trivia_similarprojects.html
M pmd_release_notes.html
M pmd_release_notes_old.html
M pmd_release_notes_pmd7.html
M pmd_rules_apex.html
M pmd_rules_apex_bestpractices.html
M pmd_rules_apex_codestyle.html
M pmd_rules_apex_design.html
M pmd_rules_apex_documentation.html
M pmd_rules_apex_errorprone.html
M pmd_rules_apex_performance.html
M pmd_rules_apex_security.html
M pmd_rules_ecmascript.html
M pmd_rules_ecmascript_bestpractices.html
M pmd_rules_ecmascript_codestyle.html
M pmd_rules_ecmascript_errorprone.html
M pmd_rules_html.html
M pmd_rules_html_bestpractices.html
M pmd_rules_java.html
M pmd_rules_java_bestpractices.html
M pmd_rules_java_codestyle.html
M pmd_rules_java_design.html
M pmd_rules_java_documentation.html
M pmd_rules_java_errorprone.html
M pmd_rules_java_multithreading.html
M pmd_rules_java_performance.html
M pmd_rules_java_security.html
M pmd_rules_jsp.html
M pmd_rules_jsp_bestpractices.html
M pmd_rules_jsp_codestyle.html
M pmd_rules_jsp_design.html
M pmd_rules_jsp_errorprone.html
M pmd_rules_jsp_security.html
M pmd_rules_kotlin.html
M pmd_rules_kotlin_bestpractices.html
M pmd_rules_kotlin_errorprone.html
M pmd_rules_modelica.html
M pmd_rules_modelica_bestpractices.html
M pmd_rules_plsql.html
M pmd_rules_plsql_bestpractices.html
M pmd_rules_plsql_codestyle.html
M pmd_rules_plsql_design.html
M pmd_rules_plsql_errorprone.html
M pmd_rules_pom.html
M pmd_rules_pom_errorprone.html
M pmd_rules_scala.html
M pmd_rules_swift.html
M pmd_rules_swift_bestpractices.html
M pmd_rules_swift_errorprone.html
M pmd_rules_velocity.html
M pmd_rules_velocity_bestpractices.html
M pmd_rules_velocity_design.html
M pmd_rules_velocity_errorprone.html
M pmd_rules_visualforce.html
M pmd_rules_visualforce_security.html
M pmd_rules_xml.html
M pmd_rules_xml_bestpractices.html
M pmd_rules_xml_errorprone.html
M pmd_rules_xsl.html
M pmd_rules_xsl_codestyle.html
M pmd_rules_xsl_performance.html
M pmd_userdocs_3rdpartyrulesets.html
M pmd_userdocs_best_practices.html
M pmd_userdocs_cli_reference.html
M pmd_userdocs_configuring_rules.html
M pmd_userdocs_cpd.html
M pmd_userdocs_cpd_report_formats.html
M pmd_userdocs_extending_ast_du

[pmd-commits] [pmd/pmd-eclipse-plugin-p2-site] 5a832b: Update pmd/pmd-eclipse-plugin-p2-site

2024-05-31 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd-eclipse-plugin-p2-site
  Commit: 5a832bccadda4a418716ce0eb8fdba07e1d80218
  
https://github.com/pmd/pmd-eclipse-plugin-p2-site/commit/5a832bccadda4a418716ce0eb8fdba07e1d80218
  Author: PMD CI (pmd-bot) 
  Date:   2024-06-01 (Sat, 01 Jun 2024)

  Changed paths:
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230530-1924-rc3/META-INF/ECLIPSE-.SF
A 7.0.0.v20230530-1924-rc3/META-INF/MANIFEST.MF
A 7.0.0.v20230530-1924-rc3/artifacts.jar
A 7.0.0.v20230530-1924-rc3/artifacts.xml.xz
A 7.0.0.v20230530-1924-rc3/content.jar
A 7.0.0.v20230530-1924-rc3/content.xml.xz
A 
7.0.0.v20230530-1924-rc3/features/net.sourceforge.pmd.eclipse_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230530-1924-rc3/index.md
A 7.0.0.v20230530-1924-rc3/p2.index
A 
7.0.0.v20230530-1924-rc3/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230530-1924-rc3.jar
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.RSA
A 7.0.0.v20230930-1814-rc4/META-INF/ECLIPSE-.SF
A 7.0.0.v20230930-1814-rc4/META-INF/MANIFEST.MF
A 7.0.0.v20230930-1814-rc4/artifacts.jar
A 7.0.0.v20230930-1814-rc4/artifacts.xml.xz
A 7.0.0.v20230930-1814-rc4/content.jar
A 7.0.0.v20230930-1814-rc4/content.xml.xz
A 
7.0.0.v20230930-1814-rc4/features/net.sourceforge.pmd.eclipse_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20230930-1814-rc4/index.md
A 7.0.0.v20230930-1814-rc4/p2.index
A 
7.0.0.v20230930-1814-rc4/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20230930-1814-rc4.jar
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.RSA
A 7.0.0.v20240322-0920-r/META-INF/ECLIPSE-.SF
A 7.0.0.v20240322-0920-r/META-INF/MANIFEST.MF
A 7.0.0.v20240322-0920-r/artifacts.jar
A 7.0.0.v20240322-0920-r/artifacts.xml.xz
A 7.0.0.v20240322-0920-r/content.jar
A 7.0.0.v20240322-0920-r/content.xml.xz
A 
7.0.0.v20240322-0920-r/features/net.sourceforge.pmd.eclipse_7.0.0.v20240322-0920-r.jar
A 7.0.0.v20240322-0920-r/index.md
A 7.0.0.v20240322-0920-r/p2.index
A 
7.0.0.v20240322-0920-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.0.0.v20240322-0920-r.jar
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.RSA
A 7.1.0.v20240426-0821-r/META-INF/ECLIPSE-.SF
A 7.1.0.v20240426-0821-r/META-INF/MANIFEST.MF
A 7.1.0.v20240426-0821-r/artifacts.jar
A 7.1.0.v20240426-0821-r/artifacts.xml.xz
A 7.1.0.v20240426-0821-r/content.jar
A 7.1.0.v20240426-0821-r/content.xml.xz
A 
7.1.0.v20240426-0821-r/features/net.sourceforge.pmd.eclipse_7.1.0.v20240426-0821-r.jar
A 7.1.0.v20240426-0821-r/index.md
A 7.1.0.v20240426-0821-r/p2.index
A 
7.1.0.v20240426-0821-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.1.0.v20240426-0821-r.jar
A 7.2.0.v20240531-1152-r/META-INF/ECLIPSE-.RSA
A 7.2.0.v20240531-1152-r/META-INF/ECLIPSE-.SF
A 7.2.0.v20240531-1152-r/META-INF/MANIFEST.MF
A 7.2.0.v20240531-1152-r/artifacts.jar
A 7.2.0.v20240531-1152-r/artifacts.xml.xz
A 7.2.0.v20240531-1152-r/content.jar
A 7.2.0.v20240531-1152-r/content.xml.xz
A 
7.2.0.v20240531-1152-r/features/net.sourceforge.pmd.eclipse_7.2.0.v20240531-1152-r.jar
A 7.2.0.v20240531-1152-r/index.md
A 7.2.0.v20240531-1152-r/p2.index
A 
7.2.0.v20240531-1152-r/plugins/net.sourceforge.pmd.eclipse.plugin_7.2.0.v20240531-1152-r.jar
A compositeArtifacts.xml
A compositeContent.xml
A index.md
A p2.index
A snapshot/META-INF/ECLIPSE-.RSA
A snapshot/META-INF/ECLIPSE-.SF
A snapshot/META-INF/MANIFEST.MF
A snapshot/artifacts.jar
A snapshot/artifacts.xml.xz
A snapshot/content.jar
A snapshot/content.xml.xz
A snapshot/features/net.sourceforge.pmd.eclipse_7.3.0.v20240601-0509.jar
A snapshot/index.md
A snapshot/p2.index
A 
snapshot/plugins/net.sourceforge.pmd.eclipse.plugin_7.3.0.v20240601-0509.jar

  Log Message:
  ---
  Update pmd/pmd-eclipse-plugin-p2-site



To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd-eclipse-plugin-p2-site/settings/notifications


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits