Skip to content

Commit 27671b5

Browse files
committed
Create pom.xml
1 parent 53402e9 commit 27671b5

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

pom.xml

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.bandwidth.sdk</groupId>
4+
<artifactId>numbers</artifactId>
5+
<version>0.4.0</version>
6+
<name>Bandwidth Java Numbers</name>
7+
<description>Java SDK for Bandwidth Numbers</description>
8+
<url>https://github.com/Bandwidth/numbers-java-sdk</url>
9+
<licenses>
10+
<license>
11+
<name>The Apache License, Version 2.0</name>
12+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
13+
</license>
14+
</licenses>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>ossrh</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
20+
<repository>
21+
<id>ossrh</id>
22+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
23+
</repository>
24+
</distributionManagement>
25+
<developers>
26+
<developer>
27+
<id>dx-bandwidth</id>
28+
<name>DX-Bandwidth</name>
29+
<email>[email protected]</email>
30+
<organization>org.apache.maven.model.Organization@2a1a6ea0</organization>
31+
<organizationUrl>http://bandwidth.com</organizationUrl>
32+
</developer>
33+
</developers>
34+
<scm>
35+
<connection>scm:git:git://github.com/Bandwidth/numbers-java-sdk.git</connection>
36+
<developerConnection>scm:git:ssh://github.com/Bandwidth/numbers-java-sdk.git</developerConnection>
37+
<url>https://github.com/Bandwidth/numbers-java-sdk/tree/master</url>
38+
</scm>
39+
<dependencies>
40+
<dependency>
41+
<groupId>com.fasterxml.jackson.datatype</groupId>
42+
<artifactId>jackson-datatype-jdk8</artifactId>
43+
<version>2.8.6</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.asynchttpclient</groupId>
47+
<artifactId>async-http-client</artifactId>
48+
<version>2.6.0</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.google.guava</groupId>
52+
<artifactId>guava</artifactId>
53+
<version>27.0-jre</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.fasterxml.jackson.datatype</groupId>
57+
<artifactId>jackson-datatype-guava</artifactId>
58+
<version>2.9.5</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.dataformat</groupId>
62+
<artifactId>jackson-dataformat-xml</artifactId>
63+
<version>2.9.4</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.fasterxml.jackson.core</groupId>
67+
<artifactId>jackson-core</artifactId>
68+
<version>2.9.5</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>com.fasterxml.jackson.core</groupId>
72+
<artifactId>jackson-databind</artifactId>
73+
<version>2.9.5</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.assertj</groupId>
77+
<artifactId>assertj-core</artifactId>
78+
<version>3.11.1</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.mockito</groupId>
82+
<artifactId>mockito-core</artifactId>
83+
<version>2.23.0</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>junit</groupId>
87+
<artifactId>junit</artifactId>
88+
<version>4.12</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.immutables</groupId>
92+
<artifactId>value</artifactId>
93+
<version>2.7.5</version>
94+
<scope>provided</scope>
95+
</dependency>
96+
</dependencies>
97+
</project>

0 commit comments

Comments
 (0)