Compare commits

..

11 Commits

Author SHA1 Message Date
amithkoujalgi
4b49d6004c [maven-release-plugin] prepare release v1.0.21 2023-12-19 19:49:51 +00:00
Amith Koujalgi
7fd27634d4 Merge remote-tracking branch 'origin/main' 2023-12-20 01:18:43 +05:30
Amith Koujalgi
ea64fc4677 clean up 2023-12-20 01:18:30 +05:30
amithkoujalgi
376cd28e0c [maven-release-plugin] prepare for next development iteration 2023-12-19 19:36:06 +00:00
amithkoujalgi
31c47c6468 [maven-release-plugin] prepare release v1.0.20 2023-12-19 19:36:05 +00:00
Amith Koujalgi
2e34a1514c Merge remote-tracking branch 'origin/main' 2023-12-20 01:05:10 +05:30
Amith Koujalgi
dae99e839d clean up 2023-12-20 01:04:58 +05:30
amithkoujalgi
877901ccff [maven-release-plugin] prepare for next development iteration 2023-12-19 19:15:11 +00:00
amithkoujalgi
0fec81eef7 [maven-release-plugin] prepare release v1.0.19 2023-12-19 19:15:08 +00:00
Amith Koujalgi
4dd27b3e1a clean up 2023-12-20 00:44:04 +05:30
amithkoujalgi
a06ededd46 [maven-release-plugin] prepare for next development iteration 2023-12-19 19:02:03 +00:00
5 changed files with 38 additions and 34 deletions

View File

@@ -58,7 +58,6 @@ jobs:
git config --global user.email "koujalgi.amith@gmail.com" git config --global user.email "koujalgi.amith@gmail.com"
git config --global user.name "amithkoujalgi" git config --global user.name "amithkoujalgi"
mvn -B -ntp -DskipTests -Pci-cd -Darguments="-DskipTests -Pci-cd" release:clean release:prepare release:perform mvn -B -ntp -DskipTests -Pci-cd -Darguments="-DskipTests -Pci-cd" release:clean release:prepare release:perform
# mvn clean -Punit-tests release:clean release:prepare release:perform -B -Darguments="-DskipTests -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}"
env: env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

View File

@@ -1,17 +1,13 @@
build:
mvn -B clean install
ut: ut:
mvn clean test -Punit-tests mvn clean test -Punit-tests
it: it:
mvn clean verify -Pintegration-tests mvn clean verify -Pintegration-tests
build: list-releases:
mvn -B clean test install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=asc&page=0&size=12&filter=namespace%3Aio.github.amithkoujalgi%2Cname%3Aollama4j' \
--compressed \
release: --silent | jq '.components[].version'
mvn -B clean install -Punit-tests release:clean release:prepare release:perform -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
update-version:
mvn versions:set -DnewVersion=1.0.1
deploy:
mvn clean deploy -Punit-tests -Dgpg.passphrase="$GPG_PASSPHRASE" -e

View File

@@ -53,34 +53,25 @@ for [Ollama](https://github.com/jmorganca/ollama/blob/main/docs/api.md) APIs.
#### Installation #### Installation
In your Maven project, add this dependency available in: In your Maven project, add this dependency:
- https://central.sonatype.com/artifact/io.github.amithkoujalgi/ollama4j
- [Central Repository](https://s01.oss.sonatype.org/#nexus-search;quick~ollama4j)
```xml ```xml
<dependency> <dependency>
<groupId>io.github.amithkoujalgi</groupId> <groupId>io.github.amithkoujalgi</groupId>
<artifactId>ollama4j</artifactId> <artifactId>ollama4j</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0.20</version>
</dependency> </dependency>
``` ```
You might want to include the Maven repository to pull the ollama4j library from. Include this in [![][lib-shield]][lib]
your `pom.xml`:
```xml [lib]: https://central.sonatype.com/artifact/io.github.amithkoujalgi/ollama4j
<repositories> [lib-shield]: https://img.shields.io/badge/ollama4j-get_latest_version-blue.svg?style=for-the-badge&labelColor=gray
<repository>
<id>ollama4j-from-ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
```
You should also include an implementation of [SL4J](https://www.slf4j.org/) logger in your `pom.xml` file. For example, You might want to include an implementation of [SL4J](https://www.slf4j.org/) logger in your `pom.xml` file. For
example,
Use `slf4j-jdk14` implementation: Use `slf4j-jdk14` implementation:

View File

@@ -1,13 +1,16 @@
Understanding publishing: Understanding publishing:
https://dzone.com/articles/how-to-publish-artifacts-to-maven-central https://dzone.com/articles/how-to-publish-artifacts-to-maven-central
GPG Signing setup Reference Repo:
https://github.com/dsibilio/badge-maker/tree/main
## GPG Setup ## GPG Signing setup
### GPG Setup
https://central.sonatype.org/publish/requirements/gpg/#listing-keys https://central.sonatype.org/publish/requirements/gpg/#listing-keys
### Steps #### Steps
- Create key: `gpg --gen-key` and then list keys to verify: `gpg --list-keys` - Create key: `gpg --gen-key` and then list keys to verify: `gpg --list-keys`
- Distributing Your Public Key: - Distributing Your Public Key:
@@ -33,4 +36,19 @@ gpg --armor --export-secret-keys 88AA0C903A513340A0F3094326257A6F6F5F24A9 > ~/ol
https://central.sonatype.org/publish/publish-maven/ https://central.sonatype.org/publish/publish-maven/
### Steps ## List release versions
```shell
curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=desc&page=0&size=12&filter=namespace%3Aio.github.amithkoujalgi%2Cname%3Aollama4j' \
--compressed \
--silent | jq '.components[].version'
```
Deployment steps to test. [IGNORE THIS FOR PUBLISHING CONTEXT. THIS IS ONLY TO TEST STUFF OUT LOCALLY]
```shell
# release:
mvn -B clean install deploy -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
#or
mvn -B clean install -Punit-tests release:clean release:prepare release:perform -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
```

View File

@@ -4,7 +4,7 @@
<groupId>io.github.amithkoujalgi</groupId> <groupId>io.github.amithkoujalgi</groupId>
<artifactId>ollama4j</artifactId> <artifactId>ollama4j</artifactId>
<version>1.0.18</version> <version>1.0.21</version>
<name>Ollama4j</name> <name>Ollama4j</name>
<description>Java library for interacting with Ollama API.</description> <description>Java library for interacting with Ollama API.</description>
@@ -39,7 +39,7 @@
<connection>scm:git:git@github.com:amithkoujalgi/ollama4j.git</connection> <connection>scm:git:git@github.com:amithkoujalgi/ollama4j.git</connection>
<developerConnection>scm:git:https://github.com/amithkoujalgi/ollama4j.git</developerConnection> <developerConnection>scm:git:https://github.com/amithkoujalgi/ollama4j.git</developerConnection>
<url>https://github.com/amithkoujalgi/ollama4j</url> <url>https://github.com/amithkoujalgi/ollama4j</url>
<tag>v1.0.18</tag> <tag>v1.0.21</tag>
</scm> </scm>
<build> <build>