Compare commits

..

34 Commits

Author SHA1 Message Date
amithkoujalgi
04f9e77149 [maven-release-plugin] prepare release v1.0.17 2023-12-19 18:50:08 +00:00
Amith Koujalgi
553e7dab41 clean up 2023-12-20 00:19:13 +05:30
Amith Koujalgi
3a75cd7e92 clean up 2023-12-20 00:16:25 +05:30
amithkoujalgi
c45b5de3ea [maven-release-plugin] prepare release v1.0.16 2023-12-19 18:45:42 +00:00
Amith Koujalgi
6c2b3ca206 clean up 2023-12-20 00:14:45 +05:30
Amith Koujalgi
1ff5fbfc9f clean up 2023-12-20 00:10:55 +05:30
Amith Koujalgi
929242cc26 clean up 2023-12-20 00:02:09 +05:30
amithkoujalgi
d854f82966 [maven-release-plugin] prepare for next development iteration 2023-12-19 18:29:03 +00:00
amithkoujalgi
585858a99a [maven-release-plugin] prepare release v1.0.15 2023-12-19 18:29:02 +00:00
Amith Koujalgi
95fa72c1ec [maven-release-plugin] prepare for next development iteration 2023-12-19 23:58:06 +05:30
Amith Koujalgi
59015dff8f [maven-release-plugin] prepare release v1.0.14 2023-12-19 23:58:03 +05:30
amithkoujalgi
d601ce0e1e [maven-release-plugin] prepare for next development iteration 2023-12-19 18:11:27 +00:00
amithkoujalgi
9820248115 [maven-release-plugin] prepare release v1.0.13 2023-12-19 18:11:26 +00:00
Amith Koujalgi
7ff040f706 clean up 2023-12-19 23:40:23 +05:30
Amith Koujalgi
f4b83c2860 clean up 2023-12-19 23:39:07 +05:30
Amith Koujalgi
082b708927 clean up 2023-12-19 23:35:16 +05:30
Amith Koujalgi
8a895e02fb clean up 2023-12-19 23:33:34 +05:30
Amith Koujalgi
b878fb7b3f clean up 2023-12-19 23:33:08 +05:30
Amith Koujalgi
5c66d8df5f [maven-release-plugin] prepare for next development iteration 2023-12-19 23:26:23 +05:30
Amith Koujalgi
ebd34a536d [maven-release-plugin] prepare release v1.0.12 2023-12-19 23:26:20 +05:30
Amith Koujalgi
f2c7169aca clean up 2023-12-19 23:25:53 +05:30
Amith Koujalgi
875d1c50b0 [maven-release-plugin] prepare for next development iteration 2023-12-19 22:50:36 +05:30
Amith Koujalgi
8c4533b704 [maven-release-plugin] prepare release v1.0.11 2023-12-19 22:50:33 +05:30
Amith Koujalgi
bb50a66d80 clean up 2023-12-19 22:48:01 +05:30
Amith Koujalgi
e8dccd9b6a [maven-release-plugin] prepare for next development iteration 2023-12-19 22:45:05 +05:30
Amith Koujalgi
cc1d2c4dc1 [maven-release-plugin] prepare release v1.0.10 2023-12-19 22:45:02 +05:30
Amith Koujalgi
8e93e580cd [maven-release-plugin] prepare for next development iteration 2023-12-19 22:41:50 +05:30
Amith Koujalgi
97e3df4f44 [maven-release-plugin] prepare release v1.0.9 2023-12-19 22:41:47 +05:30
Amith Koujalgi
8b2dccdae1 clean up 2023-12-19 22:40:32 +05:30
Amith Koujalgi
7486016e85 [maven-release-plugin] prepare for next development iteration 2023-12-19 21:27:34 +05:30
Amith Koujalgi
1b4ad78acf [maven-release-plugin] prepare release v1.0.8 2023-12-19 21:27:31 +05:30
Amith Koujalgi
9936200dcc Merge remote-tracking branch 'origin/main' 2023-12-19 21:27:05 +05:30
Amith Koujalgi
5bd3573123 clean up 2023-12-19 21:26:40 +05:30
amithkoujalgi
761f82f321 [maven-release-plugin] prepare for next development iteration 2023-12-19 15:36:15 +00:00
3 changed files with 90 additions and 39 deletions

View File

@@ -5,7 +5,7 @@ name: Test and Publish Package
#on:
# release:
# types: [created]
# types: [ "created" ]
on:
push:
@@ -40,11 +40,25 @@ jobs:
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Set up Maven cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: mvn -B -ntp clean install
- name: Publish to GitHub Packages Apache Maven
# if: >
# github.event_name != 'pull_request' &&
# github.ref_name == 'main' &&
# contains(github.event.head_commit.message, 'release')
run: |
git config --global user.email "koujalgi.amith@gmail.com"
git config --global user.name "amithkoujalgi"
mvn clean -Punit-tests release:clean release:prepare release:perform -B -Darguments="-DskipTests -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}"
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:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

View File

@@ -5,10 +5,10 @@ it:
mvn clean verify -Pintegration-tests
build:
mvn clean test install -Punit-tests
mvn -B clean test install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
release:
mvn clean -Punit-tests release:clean release:prepare release:perform -B
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

107
pom.xml
View File

@@ -4,7 +4,7 @@
<groupId>io.github.amithkoujalgi</groupId>
<artifactId>ollama4j</artifactId>
<version>1.0.7</version>
<version>1.0.17</version>
<name>Ollama4j</name>
<description>Java library for interacting with Ollama API.</description>
@@ -39,22 +39,22 @@
<connection>scm:git:git@github.com:amithkoujalgi/ollama4j.git</connection>
<developerConnection>scm:git:https://github.com/amithkoujalgi/ollama4j.git</developerConnection>
<url>https://github.com/amithkoujalgi/ollama4j</url>
<tag>v1.0.7</tag>
<tag>v1.0.17</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.sonatype.plugins</groupId>-->
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!-- <version>1.6.13</version>-->
<!-- <extensions>true</extensions>-->
<!-- <configuration>-->
<!-- <serverId>ossrh</serverId>-->
<!-- <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>-->
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
<!-- </configuration>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@@ -81,27 +81,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- This is necessary for gpg to not try to use the pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-gpg-plugin</artifactId>-->
<!-- <version>1.5</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>sign-artifacts</id>-->
<!-- <phase>verify</phase>-->
<!-- <goals>-->
<!-- <goal>sign</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- &lt;!&ndash; This is necessary for gpg to not try to use the pinentry programs &ndash;&gt;-->
<!-- <gpgArguments>-->
<!-- <arg>&#45;&#45;pinentry-mode</arg>-->
<!-- <arg>loopback</arg>-->
<!-- </gpgArguments>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- Surefire Plugin for Unit Tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -143,7 +143,7 @@
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<goals>install</goals>
<!-- <goals>install</goals>-->
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
@@ -206,6 +206,9 @@
<skipUnitTests>false</skipUnitTests>
<skipIntegrationTests>true</skipIntegrationTests>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>integration-tests</id>
@@ -215,6 +218,40 @@
<skipIntegrationTests>false</skipIntegrationTests>
</properties>
</profile>
<profile>
<id>ci-cd</id>
<properties>
<test.env>unit</test.env>
<skipUnitTests>true</skipUnitTests>
<skipIntegrationTests>true</skipIntegrationTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- Prevent gpg from using pinentry programs. Fixes:
gpg: signing failed: Inappropriate ioctl for device -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>