Skip to content

Commit 846af1a

Browse files
committed
Undo Changes to pom.xml
1 parent c1bbf2e commit 846af1a

File tree

1 file changed

+105
-4
lines changed

1 file changed

+105
-4
lines changed

pom.xml

Lines changed: 105 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
-
44
- This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
55
-->
6-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
77
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
88
<modelVersion>4.0.0</modelVersion>
99

@@ -84,12 +84,66 @@
8484
<appendAssemblyId>false</appendAssemblyId>
8585
</configuration>
8686
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-source-plugin</artifactId>
90+
<version>3.1.0</version>
91+
<executions>
92+
<execution>
93+
<id>attach-sources</id>
94+
<goals>
95+
<goal>jar</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-gpg-plugin</artifactId>
103+
<version>3.0.1</version>
104+
<executions>
105+
<execution>
106+
<id>sign-artifacts</id>
107+
<phase>verify</phase>
108+
<goals>
109+
<goal>sign</goal>
110+
</goals>
111+
</execution>
112+
</executions>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.sonatype.plugins</groupId>
116+
<artifactId>nexus-staging-maven-plugin</artifactId>
117+
<version>1.6.2</version>
118+
<extensions>true</extensions>
119+
<configuration>
120+
<serverId>ossrh</serverId>
121+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
122+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
123+
</configuration>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-javadoc-plugin</artifactId>
128+
<version>3.1.1</version>
129+
<configuration>
130+
<failOnError>false</failOnError>
131+
</configuration>
132+
<executions>
133+
<execution>
134+
<id>attach-javadocs</id>
135+
<goals>
136+
<goal>jar</goal>
137+
</goals>
138+
</execution>
139+
</executions>
140+
</plugin>
87141
</plugins>
88142
</build>
89143

90144
<properties>
91-
<jackson.version>2.12.3</jackson.version>
92-
<jackson.databind.version>2.12.3</jackson.databind.version>
145+
<jackson.version>2.9.10</jackson.version>
146+
<jackson.databind.version>2.9.10.7</jackson.databind.version>
93147
<maven.compiler.source>1.8</maven.compiler.source>
94148
<maven.compiler.target>1.8</maven.compiler.target>
95149
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -102,6 +156,16 @@
102156
<artifactId>jaxb-api</artifactId>
103157
<version>2.3.0</version>
104158
</dependency>
159+
<dependency>
160+
<groupId>javax.activation</groupId>
161+
<artifactId>activation</artifactId>
162+
<version>1.1.1</version>
163+
</dependency>
164+
<dependency>
165+
<groupId>javax.annotation</groupId>
166+
<artifactId>javax.annotation-api</artifactId>
167+
<version>1.3.2</version>
168+
</dependency>
105169
<dependency>
106170
<groupId>com.sun.xml.bind</groupId>
107171
<artifactId>jaxb-core</artifactId>
@@ -145,4 +209,41 @@
145209
<scope>test</scope>
146210
</dependency>
147211
</dependencies>
148-
</project>
212+
<distributionManagement>
213+
<snapshotRepository>
214+
<id>ossrh</id>
215+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
216+
</snapshotRepository>
217+
<repository>
218+
<id>ossrh</id>
219+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
220+
</repository>
221+
</distributionManagement>
222+
<parent>
223+
<groupId>org.sonatype.oss</groupId>
224+
<artifactId>oss-parent</artifactId>
225+
<version>7</version>
226+
</parent>
227+
<licenses>
228+
<license>
229+
<name>Apache License, Version 2.0</name>
230+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
231+
<distribution>repo</distribution>
232+
</license>
233+
</licenses>
234+
<scm>
235+
<url>https://github.com/Bandwidth/java-sdk</url>
236+
<connection>scm:git:[email protected]:Bandwidth/java-sdk.git</connection>
237+
<developerConnection>scm:git:[email protected]:Bandwidth/java-sdk.git</developerConnection>
238+
</scm>
239+
<developers>
240+
<developer>
241+
<id>support</id>
242+
<name>Bandwidth Support</name>
243+
<email>[email protected]</email>
244+
<organization>Bandwidth, Inc.</organization>
245+
<organizationUrl>http://bandwidth.com</organizationUrl>
246+
<timezone>-5</timezone>
247+
</developer>
248+
</developers>
249+
</project>

0 commit comments

Comments
 (0)