forked from Mirror/ollama4j
		
	Compare commits
	
		
			24 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | ebd34a536d | ||
|   | f2c7169aca | ||
|   | 875d1c50b0 | ||
|   | 8c4533b704 | ||
|   | bb50a66d80 | ||
|   | e8dccd9b6a | ||
|   | cc1d2c4dc1 | ||
|   | 8e93e580cd | ||
|   | 97e3df4f44 | ||
|   | 8b2dccdae1 | ||
|   | 7486016e85 | ||
|   | 1b4ad78acf | ||
|   | 9936200dcc | ||
|   | 5bd3573123 | ||
|   | 761f82f321 | ||
|   | 9ec8e5155b | ||
|   | 47c014968d | ||
|   | e50b978aa0 | ||
|   | 51a57384e1 | ||
|   | 4425226439 | ||
|   | 80f9f6c370 | ||
|   | 28b8877477 | ||
|   | c40e9999ab | ||
|   | d21c331b6e | 
							
								
								
									
										11
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							| @@ -40,7 +40,18 @@ 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: 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" | ||||
|   | ||||
							
								
								
									
										4
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								Makefile
									
									
									
									
									
								
							| @@ -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 | ||||
|   | ||||
							
								
								
									
										104
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										104
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -4,7 +4,7 @@ | ||||
|  | ||||
|     <groupId>io.github.amithkoujalgi</groupId> | ||||
|     <artifactId>ollama4j</artifactId> | ||||
|     <version>1.0.4</version> | ||||
|     <version>1.0.12</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.4</tag> | ||||
|         <tag>v1.0.12</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>--> | ||||
|             <!--                            <!– 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>--> | ||||
|             <!-- 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> | ||||
| @@ -215,6 +215,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> | ||||
		Reference in New Issue
	
	Block a user