|
9 | 9 | <url>https://github.com/Bandwidth/java-sdk</url> |
10 | 10 | <description>The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs</description> |
11 | 11 | <scm> |
12 | | - <connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection> |
13 | | - < developerConnection>scm:git: [email protected]: openapitools/openapi-generator.git</ developerConnection> |
14 | | - <url>https://github.com/openapitools/openapi-generator</url> |
| 12 | + <url>https://github.com/Bandwidth/java-sdk</url> |
| 13 | + < connection>scm:git: [email protected]: Bandwidth/java-sdk.git</ connection> |
| 14 | + <developerConnection>scm:git:git@github.com:Bandwidth/java-sdk.git</developerConnection> |
15 | 15 | </scm> |
16 | 16 |
|
| 17 | + <distributionManagement> |
| 18 | + <snapshotRepository> |
| 19 | + <id>ossrh</id> |
| 20 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 21 | + </snapshotRepository> |
| 22 | + <repository> |
| 23 | + <id>ossrh</id> |
| 24 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 25 | + </repository> |
| 26 | + </distributionManagement> |
| 27 | + |
17 | 28 | <licenses> |
18 | 29 | <license> |
19 | 30 | <name>MIT</name> |
|
45 | 56 | <arg>-Xlint:all</arg> |
46 | 57 | <arg>-J-Xss4m</arg><!-- Compiling the generated JSON.java file may require larger stack size. --> |
47 | 58 | </compilerArgs> |
| 59 | + <forceJavacCompilerUse>true</forceJavacCompilerUse> |
| 60 | + <release>${java.version}</release> |
| 61 | + <source>${java.version}</source> |
| 62 | + <target>${java.version}</target> |
48 | 63 | </configuration> |
49 | 64 | </plugin> |
50 | 65 | <plugin> |
|
191 | 206 | </execution> |
192 | 207 | </executions> |
193 | 208 | </plugin> |
| 209 | + <plugin> |
| 210 | + <groupId>org.apache.maven.plugins</groupId> |
| 211 | + <artifactId>maven-gpg-plugin</artifactId> |
| 212 | + <version>3.0.1</version> |
| 213 | + <executions> |
| 214 | + <execution> |
| 215 | + <id>sign-artifacts</id> |
| 216 | + <phase>verify</phase> |
| 217 | + <goals> |
| 218 | + <goal>sign</goal> |
| 219 | + </goals> |
| 220 | + </execution> |
| 221 | + </executions> |
| 222 | + </plugin> |
| 223 | + <plugin> |
| 224 | + <groupId>org.sonatype.plugins</groupId> |
| 225 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 226 | + <version>1.7.0</version> |
| 227 | + <extensions>true</extensions> |
| 228 | + <configuration> |
| 229 | + <serverId>ossrh</serverId> |
| 230 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 231 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 232 | + </configuration> |
| 233 | + </plugin> |
194 | 234 | <!-- Use spotless plugin to automatically format code, remove unused import, etc |
195 | 235 | To apply changes directly to the file, run `mvn spotless:apply` |
196 | 236 | Ref: https://github.com/diffplug/spotless/tree/main/plugin-maven |
|
0 commit comments