Skip to content

Commit 1fbc3c5

Browse files
committed
Remove Snapshot builds section from README
Remove the snapshot badge and the entire "Snapshot builds" section including Maven configuration instructions for GitHub Packages. https://claude.ai/code/session_01TLazuhMKS5WrYpmUx7eM8s
1 parent 4535a3f commit 1fbc3c5

1 file changed

Lines changed: 0 additions & 37 deletions

File tree

README.md

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
![Java 8+](https://img.shields.io/badge/Java-8%2B-informational)
22
[![llama.cpp b9106](https://img.shields.io/badge/llama.cpp-%23b9106-informational)](https://github.com/ggml-org/llama.cpp/releases/tag/b9106)
33
[![Maven Central](https://img.shields.io/maven-central/v/net.ladenthin/llama)](https://central.sonatype.com/artifact/net.ladenthin/llama)
4-
[![Snapshot](https://img.shields.io/badge/snapshot-latest-informational)](https://github.com/bernardladenthin/java-llama.cpp/releases/tag/snapshot)
54

65
# Java Bindings for [llama.cpp](https://github.com/ggerganov/llama.cpp)
76

@@ -47,42 +46,6 @@ Access this library via Maven (released versions on Maven Central):
4746

4847
There are multiple [examples](src/test/java/examples).
4948

50-
### Snapshot builds
51-
52-
Every push to `master` publishes a snapshot to [GitHub Packages](https://github.com/bernardladenthin/java-llama.cpp/packages) and attaches JARs to the [snapshot release](https://github.com/bernardladenthin/java-llama.cpp/releases/tag/snapshot).
53-
54-
To use the snapshot as a Maven dependency, add the repository and a GitHub token to your `~/.m2/settings.xml`:
55-
56-
```xml
57-
<settings>
58-
<servers>
59-
<server>
60-
<id>github-java-llama</id>
61-
<username>YOUR_GITHUB_USERNAME</username>
62-
<password>YOUR_GITHUB_TOKEN</password> <!-- token needs read:packages scope -->
63-
</server>
64-
</servers>
65-
</settings>
66-
```
67-
68-
Then add to your `pom.xml`:
69-
70-
```xml
71-
<repositories>
72-
<repository>
73-
<id>github-java-llama</id>
74-
<url>https://maven.pkg.github.com/bernardladenthin/java-llama.cpp</url>
75-
<snapshots><enabled>true</enabled></snapshots>
76-
</repository>
77-
</repositories>
78-
79-
<dependency>
80-
<groupId>net.ladenthin</groupId>
81-
<artifactId>llama</artifactId>
82-
<version>5.0.0-SNAPSHOT</version>
83-
</dependency>
84-
```
85-
8649
### No Setup required
8750

8851
We support CPU inference for the following platforms out of the box:

0 commit comments

Comments
 (0)