|
5 | 5 |
|
6 | 6 | <groupId>org.devlive.sdk</groupId> |
7 | 7 | <artifactId>openai-java-sdk</artifactId> |
8 | | - <version>1.0.0-SNAPSHOT</version> |
| 8 | + <version>1.0.0</version> |
9 | 9 |
|
10 | 10 | <name>openai-java-sdk</name> |
11 | 11 | <description> |
12 | 12 | Provides Java developers with a convenient, easy-to-use SDK to interact with OpenAI's apis. |
13 | 13 | </description> |
14 | | - |
15 | 14 | <url>https://openai-java-sdk.devlive.org</url> |
16 | 15 |
|
17 | 16 | <scm> |
18 | | - <connection>scm:git:git://github.com/devlive-community/openai-java-sdk</connection> |
19 | 17 | <url>https://github.com/devlive-community/openai-java-sdk</url> |
| 18 | + <connection>scm:git:git://github.com/devlive-community/openai-java-sdk</connection> |
| 19 | + <tag>openai,jdk,java,chatgpt</tag> |
20 | 20 | </scm> |
21 | 21 |
|
22 | 22 | <organization> |
|
56 | 56 | <okhttp.version>4.9.3</okhttp.version> |
57 | 57 | <guava.version>31.1-jre</guava.version> |
58 | 58 | <retrofit2.version>2.9.0</retrofit2.version> |
| 59 | + <findbugs.version>3.0.1</findbugs.version> |
59 | 60 | <plugin.maven.checkstyle.version>3.0.0</plugin.maven.checkstyle.version> |
60 | 61 | <plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version> |
| 62 | + <plugin.maven.source.version>2.2.1</plugin.maven.source.version> |
| 63 | + <plugin.maven.javadoc.version>3.5.0</plugin.maven.javadoc.version> |
| 64 | + <plugin.maven.gpg.version>1.6</plugin.maven.gpg.version> |
| 65 | + <plugin.maven.nexus.version>1.6</plugin.maven.nexus.version> |
61 | 66 | </properties> |
62 | 67 |
|
63 | 68 | <dependencies> |
|
118 | 123 | <artifactId>converter-jackson</artifactId> |
119 | 124 | <version>${retrofit2.version}</version> |
120 | 125 | </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>com.google.code.findbugs</groupId> |
| 128 | + <artifactId>findbugs-annotations</artifactId> |
| 129 | + <version>${findbugs.version}</version> |
| 130 | + </dependency> |
121 | 131 | </dependencies> |
122 | 132 |
|
123 | 133 | <build> |
|
165 | 175 | </execution> |
166 | 176 | </executions> |
167 | 177 | </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.apache.maven.plugins</groupId> |
| 180 | + <artifactId>maven-source-plugin</artifactId> |
| 181 | + <version>${plugin.maven.source.version}</version> |
| 182 | + <executions> |
| 183 | + <execution> |
| 184 | + <phase>package</phase> |
| 185 | + <goals> |
| 186 | + <goal>jar-no-fork</goal> |
| 187 | + </goals> |
| 188 | + </execution> |
| 189 | + </executions> |
| 190 | + </plugin> |
| 191 | + <plugin> |
| 192 | + <groupId>org.apache.maven.plugins</groupId> |
| 193 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 194 | + <version>${plugin.maven.javadoc.version}</version> |
| 195 | + <executions> |
| 196 | + <execution> |
| 197 | + <phase>package</phase> |
| 198 | + <goals> |
| 199 | + <goal>jar</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
| 202 | + </executions> |
| 203 | + <configuration> |
| 204 | + <tags> |
| 205 | + <tag> |
| 206 | + <name>Description</name> |
| 207 | + <placement>test</placement> |
| 208 | + <head>description</head> |
| 209 | + </tag> |
| 210 | + </tags> |
| 211 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 212 | + <failOnError>false</failOnError> |
| 213 | + </configuration> |
| 214 | + </plugin> |
| 215 | + <plugin> |
| 216 | + <groupId>org.apache.maven.plugins</groupId> |
| 217 | + <artifactId>maven-gpg-plugin</artifactId> |
| 218 | + <version>${plugin.maven.gpg.version}</version> |
| 219 | + <executions> |
| 220 | + <execution> |
| 221 | + <phase>verify</phase> |
| 222 | + <goals> |
| 223 | + <goal>sign</goal> |
| 224 | + </goals> |
| 225 | + </execution> |
| 226 | + </executions> |
| 227 | + </plugin> |
| 228 | + <plugin> |
| 229 | + <groupId>org.sonatype.plugins</groupId> |
| 230 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 231 | + <version>${plugin.maven.nexus.version}</version> |
| 232 | + <extensions>true</extensions> |
| 233 | + <configuration> |
| 234 | + <serverId>ossrh</serverId> |
| 235 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 236 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 237 | + </configuration> |
| 238 | + </plugin> |
168 | 239 | </plugins> |
169 | 240 | </build> |
| 241 | + |
| 242 | + <distributionManagement> |
| 243 | + <snapshotRepository> |
| 244 | + <id>ossrh</id> |
| 245 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 246 | + </snapshotRepository> |
| 247 | + <repository> |
| 248 | + <id>ossrh</id> |
| 249 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 250 | + </repository> |
| 251 | + </distributionManagement> |
170 | 252 | </project> |
0 commit comments