|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<!-- |
3 |
| - ~ MIT License |
4 |
| - ~ |
5 |
| - ~ Copyright (c) 2023. Artyom Nefedov |
6 |
| - ~ |
7 |
| - ~ Permission is hereby granted, free of charge, to any person obtaining a copy |
8 |
| - ~ of this software and associated documentation files (the "Software"), to deal |
9 |
| - ~ in the Software without restriction, including without limitation the rights |
10 |
| - ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
11 |
| - ~ copies of the Software, and to permit persons to whom the Software is |
12 |
| - ~ furnished to do so, subject to the following conditions: |
13 |
| - ~ |
14 |
| - ~ The above copyright notice and this permission notice shall be included in all |
15 |
| - ~ copies or substantial portions of the Software. |
16 |
| - ~ |
17 |
| - ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
18 |
| - ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
19 |
| - ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
20 |
| - ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
21 |
| - ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
22 |
| - ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
23 |
| - ~ SOFTWARE. |
24 |
| - --> |
25 |
| - |
26 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
27 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
28 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
29 | 5 | <modelVersion>4.0.0</modelVersion>
|
30 | 6 |
|
31 | 7 | <groupId>io.github.artemnefedov</groupId>
|
32 | 8 | <artifactId>javaai</artifactId>
|
33 |
| - <version>0.3.2</version> |
| 9 | + <version>0.3.3</version> |
34 | 10 | <packaging>jar</packaging>
|
35 | 11 |
|
36 | 12 | <name>JavaAI</name>
|
37 |
| - <description>Open AI GPT-3 Java SDK</description> |
| 13 | + <description>JavaAI is an open-source Java library for interacting with the OpenAI API</description> |
38 | 14 | <url>https://github.com/artemnefedov/JavaAI</url>
|
39 | 15 |
|
40 | 16 | <issueManagement>
|
|
64 | 40 | </scm>
|
65 | 41 |
|
66 | 42 | <properties>
|
67 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
68 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
| 43 | + <maven.compiler.source>8</maven.compiler.source> |
| 44 | + <maven.compiler.target>8</maven.compiler.target> |
69 | 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
70 | 46 | <sonar.organization>artemnefedov</sonar.organization>
|
71 | 47 | <sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
0 commit comments