mirror of
				https://github.com/amithkoujalgi/ollama4j.git
				synced 2025-10-31 08:30:41 +01:00 
			
		
		
		
	Compare commits
	
		
			17 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 0fec81eef7 | ||
|   | 4dd27b3e1a | ||
|   | a06ededd46 | ||
|   | 1c687831d1 | ||
|   | 2c2750b3e1 | ||
|   | 809efa9053 | ||
|   | 4a7e9ac7f0 | ||
|   | 04f9e77149 | ||
|   | 553e7dab41 | ||
|   | 3a75cd7e92 | ||
|   | c45b5de3ea | ||
|   | 6c2b3ca206 | ||
|   | 1ff5fbfc9f | ||
|   | 929242cc26 | ||
|   | d854f82966 | ||
|   | 585858a99a | ||
|   | 95fa72c1ec | 
							
								
								
									
										2
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							| @@ -5,7 +5,7 @@ name: Test and Publish Package | ||||
|  | ||||
| #on: | ||||
| #  release: | ||||
| #    types: [created] | ||||
| #    types: [ "created" ] | ||||
|  | ||||
| on: | ||||
|   push: | ||||
|   | ||||
							
								
								
									
										24
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								Makefile
									
									
									
									
									
								
							| @@ -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
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -4,7 +4,7 @@ | ||||
|  | ||||
|     <groupId>io.github.amithkoujalgi</groupId> | ||||
|     <artifactId>ollama4j</artifactId> | ||||
|     <version>1.0.14</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.14</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> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user