Skip to content

Commit 3aaf050

Browse files
committed
released to [Maven Central Repository]
- update readme. - update pom details.
1 parent a2bd72d commit 3aaf050

File tree

2 files changed

+36
-20
lines changed

2 files changed

+36
-20
lines changed

README.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# IntelliJava-OpenaiAPI
2-
*IntelliJava V0.4.0*
2+
*IntelliJava V0.5.5*
33

44
IntelliJava allows java developers to easily integrate with the latest language models and deep learning frameworks using few lines of java code.
55
The first version supports only Openai APIs. It provides a simple and intuitive API with convenient methods for sending text input to models like (GPT-3 and DALL·E) and receiving generated text or images in return.
@@ -11,15 +11,31 @@ The first version supports only Openai APIs. It provides a simple and intuitive
1111
3. Call the ``RemoteLanguageModel`` for the language model and ``RemoateImageModel`` for image generation.
1212

1313
## Integration
14+
The package released to [Maven Central Repository](https://central.sonatype.dev/artifact/io.github.barqawiz/intellijava.core/0.5.5).
1415

15-
For jar integration download:
16-
[intellijava.jar](https://insta-answer-public.s3.amazonaws.com/opensource/IntelliJava/version0.3/com.intellijava.core-0.3.jar).
16+
Maven:
17+
```xml
18+
<dependency>
19+
<groupId>io.github.barqawiz</groupId>
20+
<artifactId>intellijava.core</artifactId>
21+
<version>0.5.5</version>
22+
</dependency>
23+
```
24+
25+
Gradle:
1726

18-
For maven:
1927
```
20-
to be updated.
28+
implementation group: 'io.github.barqawiz', name: 'intellijava.core', version: '0.5.5'
2129
```
2230

31+
Gradle(Kotlin):
32+
```
33+
implementation("io.github.barqawiz:intellijava.core:0.5.5")
34+
```
35+
36+
Jar download:
37+
[intellijava.jar](https://insta-answer-public.s3.amazonaws.com/opensource/IntelliJava/version0.5.5/intellijava.core-0.5.5.jar).
38+
2339
For ready integration: try the sample_code.
2440

2541
## Code Example

core/com.intellijava.core/pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.barqawiz</groupId>
88
<artifactId>intellijava.core</artifactId>
9-
<version>0.4.0</version>
9+
<version>0.5.5</version>
1010

1111
<name>Intellijava</name>
1212
<description>IntelliJava allows java developers to easily integrate with the latest language models, image generation, and deep learning frameworks.</description>
@@ -119,19 +119,19 @@
119119
<plugins>
120120
<!-- GPG Signed Components -->
121121
<plugin>
122-
<groupId>org.apache.maven.plugins</groupId>
123-
<artifactId>maven-gpg-plugin</artifactId>
124-
<version>1.5</version>
125-
<executions>
126-
<execution>
127-
<id>sign-artifacts</id>
128-
<phase>verify</phase>
129-
<goals>
130-
<goal>sign</goal>
131-
</goals>
132-
</execution>
133-
</executions>
134-
</plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-gpg-plugin</artifactId>
124+
<version>1.6</version>
125+
<executions>
126+
<execution>
127+
<id>sign-artifacts</id>
128+
<phase>verify</phase>
129+
<goals>
130+
<goal>sign</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135135
<!-- maven publish plugin -->
136136
<plugin>
137137
<groupId>org.sonatype.plugins</groupId>
@@ -152,7 +152,7 @@
152152
<executions>
153153
<execution>
154154
<id>attach-sources</id>
155-
<phase>verify</phase>
155+
156156
<goals>
157157
<goal>jar-no-fork</goal>
158158
</goals>

0 commit comments

Comments
 (0)