Skip to content

Commit 69a12cd

Browse files
committed
New deploy
1 parent d70c07f commit 69a12cd

File tree

16 files changed

+1775
-587
lines changed

16 files changed

+1775
-587
lines changed

pom.xml

Lines changed: 140 additions & 201 deletions
Original file line numberDiff line numberDiff line change
@@ -1,201 +1,140 @@
1-
<project>
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>com.bandwidth.sdk</groupId>
4-
<artifactId>bandwidth-sdk</artifactId>
5-
<version>4.0.0</version>
6-
<packaging>jar</packaging>
7-
<name>BandwidthLib</name>
8-
<build>
9-
<pluginManagement>
10-
<plugins>
11-
<plugin>
12-
<groupId>org.eclipse.m2e</groupId>
13-
<artifactId>lifecycle-mapping</artifactId>
14-
<version>1.0.0</version>
15-
<configuration>
16-
<lifecycleMappingMetadata>
17-
<pluginExecutions>
18-
<pluginExecution>
19-
<pluginExecutionFilter>
20-
<groupId>org.apache.maven.plugins</groupId>
21-
<artifactId>maven-enforcer-plugin</artifactId>
22-
<versionRange>[2.0.0,)</versionRange>
23-
<goals>
24-
<goal>enforce</goal>
25-
</goals>
26-
</pluginExecutionFilter>
27-
<action>
28-
<execute>
29-
<runOnIncremental>true</runOnIncremental>
30-
</execute>
31-
</action>
32-
</pluginExecution>
33-
</pluginExecutions>
34-
</lifecycleMappingMetadata>
35-
</configuration>
36-
</plugin>
37-
</plugins>
38-
</pluginManagement>
39-
<plugins>
40-
<plugin>
41-
<groupId>org.apache.maven.plugins</groupId>
42-
<artifactId>maven-enforcer-plugin</artifactId>
43-
<version>3.0.0-M2</version>
44-
<executions>
45-
<execution>
46-
<id>enforce-versions</id>
47-
<goals>
48-
<goal>enforce</goal>
49-
</goals>
50-
<configuration>
51-
<fail>true</fail>
52-
<rules>
53-
<requireJavaVersion>
54-
<version>1.8</version>
55-
</requireJavaVersion>
56-
</rules>
57-
</configuration>
58-
</execution>
59-
</executions>
60-
</plugin>
61-
<plugin>
62-
<artifactId>maven-assembly-plugin</artifactId>
63-
<configuration>
64-
<descriptorRefs>
65-
<descriptorRef>jar-with-dependencies</descriptorRef>
66-
</descriptorRefs>
67-
<appendAssemblyId>false</appendAssemblyId>
68-
</configuration>
69-
</plugin>
70-
<plugin>
71-
<groupId>org.apache.maven.plugins</groupId>
72-
<artifactId>maven-source-plugin</artifactId>
73-
<version>3.1.0</version>
74-
<executions>
75-
<execution>
76-
<id>attach-sources</id>
77-
<goals>
78-
<goal>jar</goal>
79-
</goals>
80-
</execution>
81-
</executions>
82-
</plugin>
83-
<plugin>
84-
<groupId>org.apache.maven.plugins</groupId>
85-
<artifactId>maven-gpg-plugin</artifactId>
86-
<version>1.5</version>
87-
<executions>
88-
<execution>
89-
<id>sign-artifacts</id>
90-
<phase>verify</phase>
91-
<goals>
92-
<goal>sign</goal>
93-
</goals>
94-
</execution>
95-
</executions>
96-
</plugin>
97-
<plugin>
98-
<groupId>org.apache.maven.plugins</groupId>
99-
<artifactId>maven-javadoc-plugin</artifactId>
100-
<version>3.1.1</version>
101-
<configuration>
102-
<failOnError>false</failOnError>
103-
</configuration>
104-
<executions>
105-
<execution>
106-
<id>attach-javadocs</id>
107-
<goals>
108-
<goal>jar</goal>
109-
</goals>
110-
</execution>
111-
</executions>
112-
</plugin>
113-
</plugins>
114-
</build>
115-
<properties>
116-
<jackson.version>2.9.10</jackson.version>
117-
<jackson.databind.version>2.9.10.5</jackson.databind.version>
118-
<maven.compiler.source>1.8</maven.compiler.source>
119-
<maven.compiler.target>1.8</maven.compiler.target>
120-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
121-
</properties>
122-
<dependencies>
123-
<dependency>
124-
<groupId>javax.xml.bind</groupId>
125-
<artifactId>jaxb-api</artifactId>
126-
<version>2.3.0</version>
127-
</dependency>
128-
<dependency>
129-
<groupId>com.sun.xml.bind</groupId>
130-
<artifactId>jaxb-core</artifactId>
131-
<version>2.3.0</version>
132-
</dependency>
133-
<dependency>
134-
<groupId>com.sun.xml.bind</groupId>
135-
<artifactId>jaxb-impl</artifactId>
136-
<version>2.3.0</version>
137-
</dependency>
138-
<dependency>
139-
<groupId>org.projectlombok</groupId>
140-
<artifactId>lombok</artifactId>
141-
<version>1.18.8</version>
142-
</dependency>
143-
<dependency>
144-
<groupId>com.squareup.okhttp3</groupId>
145-
<artifactId>okhttp</artifactId>
146-
<version>3.12.1</version>
147-
</dependency>
148-
<dependency>
149-
<groupId>com.fasterxml.jackson.core</groupId>
150-
<artifactId>jackson-databind</artifactId>
151-
<version>${jackson.databind.version}</version>
152-
</dependency>
153-
<dependency>
154-
<groupId>com.fasterxml.jackson.core</groupId>
155-
<artifactId>jackson-core</artifactId>
156-
<version>${jackson.version}</version>
157-
</dependency>
158-
<dependency>
159-
<groupId>com.fasterxml.jackson.core</groupId>
160-
<artifactId>jackson-annotations</artifactId>
161-
<version>${jackson.version}</version>
162-
</dependency>
163-
</dependencies>
164-
<distributionManagement>
165-
<snapshotRepository>
166-
<id>ossrh</id>
167-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
168-
</snapshotRepository>
169-
<repository>
170-
<id>ossrh</id>
171-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
172-
</repository>
173-
</distributionManagement>
174-
<parent>
175-
<groupId>org.sonatype.oss</groupId>
176-
<artifactId>oss-parent</artifactId>
177-
<version>7</version>
178-
</parent>
179-
<licenses>
180-
<license>
181-
<name>Apache License, Version 2.0</name>
182-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
183-
<distribution>repo</distribution>
184-
</license>
185-
</licenses>
186-
<scm>
187-
<url>https://github.com/Bandwidth/java-sdk</url>
188-
<connection>scm:git:[email protected]:Bandwidth/java-sdk.git</connection>
189-
<developerConnection>scm:git:[email protected]:Bandwidth/java-sdk.git</developerConnection>
190-
</scm>
191-
<developers>
192-
<developer>
193-
<id>support</id>
194-
<name>Bandwidth Support</name>
195-
<email>[email protected]</email>
196-
<organization>Bandwidth, Inc.</organization>
197-
<organizationUrl>http://bandwidth.com</organizationUrl>
198-
<timezone>-5</timezone>
199-
</developer>
200-
</developers>
201-
</project>
1+
<!--
2+
- BandwidthLib
3+
-
4+
- This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ).
5+
-->
6+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8+
<modelVersion>4.0.0</modelVersion>
9+
10+
<groupId>com.bandwidth.sdk</groupId>
11+
<artifactId>bandwidth-sdk</artifactId>
12+
<version>2.0.0</version>
13+
<packaging>jar</packaging>
14+
15+
<name>BandwidthLib</name>
16+
17+
<build>
18+
<pluginManagement>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.eclipse.m2e</groupId>
22+
<artifactId>lifecycle-mapping</artifactId>
23+
<version>1.0.0</version>
24+
<configuration>
25+
<lifecycleMappingMetadata>
26+
<pluginExecutions>
27+
<pluginExecution>
28+
<pluginExecutionFilter>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-enforcer-plugin</artifactId>
31+
<versionRange>[2.0.0,)</versionRange>
32+
<goals>
33+
<goal>enforce</goal>
34+
</goals>
35+
</pluginExecutionFilter>
36+
<action>
37+
<execute>
38+
<runOnIncremental>true</runOnIncremental>
39+
</execute >
40+
</action>
41+
</pluginExecution>
42+
</pluginExecutions>
43+
</lifecycleMappingMetadata>
44+
</configuration>
45+
</plugin>
46+
</plugins>
47+
</pluginManagement>
48+
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-enforcer-plugin</artifactId>
52+
<version>3.0.0-M2</version>
53+
<executions>
54+
<execution>
55+
<id>enforce-versions</id>
56+
<goals>
57+
<goal>enforce</goal>
58+
</goals>
59+
<configuration>
60+
<fail>true</fail>
61+
<rules>
62+
<requireJavaVersion>
63+
<version>1.8</version>
64+
</requireJavaVersion>
65+
</rules>
66+
</configuration>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
<plugin>
71+
<artifactId>maven-assembly-plugin</artifactId>
72+
<configuration>
73+
<descriptorRefs>
74+
<descriptorRef>jar-with-dependencies</descriptorRef>
75+
</descriptorRefs>
76+
<appendAssemblyId>false</appendAssemblyId>
77+
</configuration>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
82+
<properties>
83+
<jackson.version>2.9.10</jackson.version>
84+
<jackson.databind.version>2.9.10.5</jackson.databind.version>
85+
<maven.compiler.source>1.8</maven.compiler.source>
86+
<maven.compiler.target>1.8</maven.compiler.target>
87+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
88+
</properties>
89+
90+
<dependencies>
91+
92+
<dependency>
93+
<groupId>javax.xml.bind</groupId>
94+
<artifactId>jaxb-api</artifactId>
95+
<version>2.3.0</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>com.sun.xml.bind</groupId>
99+
<artifactId>jaxb-core</artifactId>
100+
<version>2.3.0</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.sun.xml.bind</groupId>
104+
<artifactId>jaxb-impl</artifactId>
105+
<version>2.3.0</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>org.projectlombok</groupId>
109+
<artifactId>lombok</artifactId>
110+
<version>1.18.8</version>
111+
</dependency>
112+
113+
<dependency>
114+
<groupId>com.squareup.okhttp3</groupId>
115+
<artifactId>okhttp</artifactId>
116+
<version>3.12.1</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>com.fasterxml.jackson.core</groupId>
120+
<artifactId>jackson-databind</artifactId>
121+
<version>${jackson.databind.version}</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>com.fasterxml.jackson.core</groupId>
125+
<artifactId>jackson-core</artifactId>
126+
<version>${jackson.version}</version>
127+
</dependency>
128+
<dependency>
129+
<groupId>com.fasterxml.jackson.core</groupId>
130+
<artifactId>jackson-annotations</artifactId>
131+
<version>${jackson.version}</version>
132+
</dependency>
133+
<dependency>
134+
<groupId>junit</groupId>
135+
<artifactId>junit</artifactId>
136+
<version>4.13.1</version>
137+
<scope>test</scope>
138+
</dependency>
139+
</dependencies>
140+
</project>

0 commit comments

Comments
 (0)