|
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> |
|
58 | 58 | <retrofit2.version>2.9.0</retrofit2.version> |
59 | 59 | <plugin.maven.checkstyle.version>3.0.0</plugin.maven.checkstyle.version> |
60 | 60 | <plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version> |
| 61 | + <plugin.maven.source.version>2.2.1</plugin.maven.source.version> |
| 62 | + <plugin.maven.javadoc.version>3.5.0</plugin.maven.javadoc.version> |
| 63 | + <plugin.maven.gpg.version>1.6</plugin.maven.gpg.version> |
| 64 | + <plugin.maven.nexus.version>1.6</plugin.maven.nexus.version> |
61 | 65 | </properties> |
62 | 66 |
|
63 | 67 | <dependencies> |
|
165 | 169 | </execution> |
166 | 170 | </executions> |
167 | 171 | </plugin> |
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.maven.plugins</groupId> |
| 174 | + <artifactId>maven-source-plugin</artifactId> |
| 175 | + <version>${plugin.maven.source.version}</version> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <phase>package</phase> |
| 179 | + <goals> |
| 180 | + <goal>jar-no-fork</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 188 | + <version>${plugin.maven.javadoc.version}</version> |
| 189 | + <executions> |
| 190 | + <execution> |
| 191 | + <phase>package</phase> |
| 192 | + <goals> |
| 193 | + <goal>jar</goal> |
| 194 | + </goals> |
| 195 | + </execution> |
| 196 | + </executions> |
| 197 | + <configuration> |
| 198 | + <tags> |
| 199 | + <tag> |
| 200 | + <name>Description</name> |
| 201 | + <placement>test</placement> |
| 202 | + <head>description</head> |
| 203 | + </tag> |
| 204 | + </tags> |
| 205 | + <additionalOptions>-Xdoclint:none</additionalOptions> |
| 206 | + <failOnError>false</failOnError> |
| 207 | + </configuration> |
| 208 | + </plugin> |
| 209 | + <plugin> |
| 210 | + <groupId>org.apache.maven.plugins</groupId> |
| 211 | + <artifactId>maven-gpg-plugin</artifactId> |
| 212 | + <version>${plugin.maven.gpg.version}</version> |
| 213 | + <executions> |
| 214 | + <execution> |
| 215 | + <phase>verify</phase> |
| 216 | + <goals> |
| 217 | + <goal>sign</goal> |
| 218 | + </goals> |
| 219 | + </execution> |
| 220 | + </executions> |
| 221 | + </plugin> |
| 222 | + <plugin> |
| 223 | + <groupId>org.sonatype.plugins</groupId> |
| 224 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 225 | + <version>${plugin.maven.nexus.version}</version> |
| 226 | + <extensions>true</extensions> |
| 227 | + <configuration> |
| 228 | + <serverId>ossrh</serverId> |
| 229 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 230 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 231 | + </configuration> |
| 232 | + </plugin> |
168 | 233 | </plugins> |
169 | 234 | </build> |
| 235 | + |
| 236 | + <distributionManagement> |
| 237 | + <snapshotRepository> |
| 238 | + <id>ossrh</id> |
| 239 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 240 | + </snapshotRepository> |
| 241 | + <repository> |
| 242 | + <id>ossrh</id> |
| 243 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 244 | + </repository> |
| 245 | + </distributionManagement> |
170 | 246 | </project> |
0 commit comments