Compare commits

..

7 Commits

Author SHA1 Message Date
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
amithkoujalgi
1c687831d1 [maven-release-plugin] prepare release v1.0.18 2023-12-19 19:02:02 +00:00
Amith Koujalgi
2c2750b3e1 Merge remote-tracking branch 'origin/main' 2023-12-20 00:31:05 +05:30
Amith Koujalgi
809efa9053 clean up 2023-12-20 00:30:46 +05:30
amithkoujalgi
4a7e9ac7f0 [maven-release-plugin] prepare for next development iteration 2023-12-19 18:50:10 +00:00
2 changed files with 26 additions and 24 deletions

View File

@@ -1,17 +1,19 @@
build:
mvn -B clean install
ut:
mvn clean test -Punit-tests
it:
mvn clean verify -Pintegration-tests
build:
mvn -B clean test install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
release:
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
#mvn -B clean install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
#
#release:
# 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

26
pom.xml
View File

@@ -4,7 +4,7 @@
<groupId>io.github.amithkoujalgi</groupId>
<artifactId>ollama4j</artifactId>
<version>1.0.17</version>
<version>1.0.19</version>
<name>Ollama4j</name>
<description>Java library for interacting with Ollama API.</description>
@@ -39,22 +39,11 @@
<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.17</tag>
<tag>v1.0.19</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.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@@ -249,6 +238,17 @@
</execution>
</executions>
</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>
</plugins>
</build>
</profile>