Skip to content

Commit 180494c

Browse files
committed
Sync version properties and README badges with streambuffer reference setup
Add jqwik.version, archunit.version, spotbugs.version, fb-contrib.version, findsecbugs.version properties; reference them from dependency/plugin declarations instead of hardcoding. Add jcstress, Lincheck, vmlens badges to README Build section; update JMH badge to use canonical openjdk.org link and hex color #25A162. https://claude.ai/code/session_015uTXAT22RdG6vUGc8Vg4X5
1 parent d2ef4e5 commit 180494c

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
[![jqwik](https://img.shields.io/badge/tested%20with-jqwik-1f6feb)](https://jqwik.net)
55
[![ArchUnit](https://img.shields.io/badge/tested%20with-ArchUnit-c71a36)](https://www.archunit.org)
66
[![SpotBugs](https://img.shields.io/badge/analyzed%20with-SpotBugs-3b5998)](https://spotbugs.github.io)
7-
[![JMH](https://img.shields.io/badge/benchmarked%20with-JMH-brightgreen)](https://github.com/openjdk/jmh)
7+
[![jcstress](https://img.shields.io/badge/tested%20with-jcstress-007396)](https://openjdk.org/projects/code-tools/jcstress/)
8+
[![Lincheck](https://img.shields.io/badge/tested%20with-Lincheck-7F52FF)](https://github.com/JetBrains/lincheck)
9+
[![vmlens](https://img.shields.io/badge/tested%20with-vmlens-ff6f00)](https://vmlens.com)
10+
[![JMH](https://img.shields.io/badge/benchmarked%20with-JMH-25A162)](https://openjdk.org/projects/code-tools/jmh/)
811
[![llama.cpp b9354](https://img.shields.io/badge/llama.cpp-%23b9354-informational)](https://github.com/ggml-org/llama.cpp/releases/tag/b9354)
912
[![Publish](https://github.com/bernardladenthin/java-llama.cpp/actions/workflows/publish.yml/badge.svg)](https://github.com/bernardladenthin/java-llama.cpp/actions/workflows/publish.yml)
1013
[![CodeQL](https://github.com/bernardladenthin/java-llama.cpp/actions/workflows/codeql.yml/badge.svg)](https://github.com/bernardladenthin/java-llama.cpp/actions/workflows/codeql.yml)

pom.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ SPDX-License-Identifier: MIT
5353
<jcstress.version>0.16</jcstress.version>
5454
<lincheck.version>2.39</lincheck.version>
5555
<vmlens.version>1.2.28</vmlens.version>
56+
<jqwik.version>1.9.2</jqwik.version>
57+
<archunit.version>1.3.0</archunit.version>
58+
<spotbugs.version>4.8.6.6</spotbugs.version>
59+
<fb-contrib.version>7.6.4</fb-contrib.version>
60+
<findsecbugs.version>1.13.0</findsecbugs.version>
5661
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5762
<project.build.outputTimestamp>${git.commit.time}</project.build.outputTimestamp>
5863
</properties>
@@ -67,13 +72,13 @@ SPDX-License-Identifier: MIT
6772
<dependency>
6873
<groupId>net.jqwik</groupId>
6974
<artifactId>jqwik</artifactId>
70-
<version>1.9.2</version>
75+
<version>${jqwik.version}</version>
7176
<scope>test</scope>
7277
</dependency>
7378
<dependency>
7479
<groupId>com.tngtech.archunit</groupId>
7580
<artifactId>archunit-junit5</artifactId>
76-
<version>1.3.0</version>
81+
<version>${archunit.version}</version>
7782
<scope>test</scope>
7883
</dependency>
7984
<dependency>
@@ -358,7 +363,7 @@ SPDX-License-Identifier: MIT
358363
<plugin>
359364
<groupId>com.github.spotbugs</groupId>
360365
<artifactId>spotbugs-maven-plugin</artifactId>
361-
<version>4.8.6.6</version>
366+
<version>${spotbugs.version}</version>
362367
<configuration>
363368
<effort>Default</effort>
364369
<threshold>Default</threshold>
@@ -369,12 +374,12 @@ SPDX-License-Identifier: MIT
369374
<plugin>
370375
<groupId>com.mebigfatguy.fb-contrib</groupId>
371376
<artifactId>fb-contrib</artifactId>
372-
<version>7.6.4</version>
377+
<version>${fb-contrib.version}</version>
373378
</plugin>
374379
<plugin>
375380
<groupId>com.h3xstream.findsecbugs</groupId>
376381
<artifactId>findsecbugs-plugin</artifactId>
377-
<version>1.13.0</version>
382+
<version>${findsecbugs.version}</version>
378383
</plugin>
379384
</plugins>
380385
</configuration>

0 commit comments

Comments
 (0)