Skip to content

Commit

Permalink
Fix/pom (#89)
Browse files Browse the repository at this point in the history
* update pom/xml for beta release

* set user agent

* new pom configuration
  • Loading branch information
ckoegel authored Feb 22, 2023
1 parent 846466d commit 785d409
Showing 1 changed file with 34 additions and 31 deletions.
65 changes: 34 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<url>https://github.com/Bandwidth/java-sdk</url>
<description>The official client SDK for Bandwidth&#39;s Voice, Messaging, MFA, and WebRTC APIs</description>
<scm>
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>
<developerConnection>scm:git:[email protected]:openapitools/openapi-generator.git</developerConnection>
<url>https://github.com/openapitools/openapi-generator</url>
<url>https://github.com/Bandwidth/java-sdk</url>
<connection>scm:git:[email protected]:Bandwidth/java-sdk.git</connection>
<developerConnection>scm:git:git@github.com:Bandwidth/java-sdk.git</developerConnection>
</scm>

<licenses>
Expand All @@ -36,10 +36,12 @@

<developers>
<developer>
<name>OpenAPI-Generator Contributors</name>
<email>[email protected]</email>
<organization>Bandwidth</organization>
<organizationUrl>http://openapitools.org</organizationUrl>
<id>support</id>
<name>Bandwidth Support</name>
<email>[email protected]</email>
<organization>Bandwidth, Inc.</organization>
<organizationUrl>http://bandwidth.com</organizationUrl>
<timezone>-5</timezone>
</developer>
</developers>

Expand Down Expand Up @@ -205,6 +207,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.2</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Use spotless plugin to automatically format code, remove unused import, etc
To apply changes directly to the file, run `mvn spotless:apply`
Ref: https://github.com/diffplug/spotless/tree/main/plugin-maven
Expand Down Expand Up @@ -251,30 +278,6 @@
</plugins>
</build>

<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
Expand Down

0 comments on commit 785d409

Please sign in to comment.