Skip to content

Commit bb5fa5c

Browse files
committed
update the version to match maven
- update pom.xml. - update readme.
1 parent 33571d2 commit bb5fa5c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,32 @@ The supported models:
1414
3. Call the ``RemoteLanguageModel`` for the language models and ``RemoateImageModel`` for image generation.
1515

1616
## Integration
17-
The package released to [Maven Central Repository](https://central.sonatype.com/artifact/io.github.barqawiz/intellijava.core/0.6.1).
17+
The package released to [Maven Central Repository](https://central.sonatype.com/artifact/io.github.barqawiz/intellijava.core/0.6.2).
1818

1919
Maven:
2020
```xml
2121
<dependency>
2222
<groupId>io.github.barqawiz</groupId>
2323
<artifactId>intellijava.core</artifactId>
24-
<version>0.6.1</version>
24+
<version>0.6.2</version>
2525
</dependency>
2626
```
2727

2828
Gradle:
2929

3030
```
31-
implementation group: 'io.github.barqawiz', name: 'intellijava.core', version: '0.6.0'
31+
implementation 'io.github.barqawiz:intellijava.core:0.6.2'
3232
```
3333

3434
Gradle(Kotlin):
3535
```
36-
implementation("io.github.barqawiz:intellijava.core:0.6.0")
36+
implementation("io.github.barqawiz:intellijava.core:0.6.2")
3737
```
3838

3939
Jar download:
40-
[intellijava.jar](https://repo1.maven.org/maven2/io/github/barqawiz/intellijava.core/0.6.0/intellijava.core-0.6.0.jar).
40+
[intellijava.jar](https://repo1.maven.org/maven2/io/github/barqawiz/intellijava.core/0.6.2/intellijava.core-0.6.2.jar).
4141

42-
For ready integration: try the sample_code.
42+
For ready integration: try the [sample_code](https://github.com/Barqawiz/IntelliJava/tree/main/sample_code).
4343

4444
## Code Example
4545
**Language model code** (2 steps):
@@ -72,6 +72,7 @@ For full example check the code inside sample_code project.
7272

7373
## Third-party dependencies
7474
The only dependencies is **GSON**.
75+
*Required to add manually when using IntelliJava jar. However, if you imported this repo through Maven, it will handle the dependencies.*
7576

7677
For Maven:
7778
```

core/com.intellijava.core/pom.xml

Lines changed: 1 addition & 1 deletion
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.6.1</version>
9+
<version>0.6.2</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>

0 commit comments

Comments
 (0)