Skip to content

Commit 510ba5a

Browse files
committed
Added Maven POM
For GitHub dependency graph
1 parent d176488 commit 510ba5a

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>io.codebottle</groupId>
6+
<artifactId>api</artifactId>
7+
<version>0.1.0</version>
8+
<name>CodeBottle API</name>
9+
<description>Java wrapper for the CodeBottle API</description>
10+
<url>https://github.com/codebottle-io/codebottle-java</url>
11+
<inceptionYear>2019</inceptionYear>
12+
<licenses>
13+
<license>
14+
<name>MIT License</name>
15+
<url>http://www.opensource.org/licenses/mit-license.php</url>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<id>burdoto</id>
21+
<name>Tobias Burdow</name>
22+
<email>burdoto@outlook.com</email>
23+
</developer>
24+
</developers>
25+
<scm>
26+
<connection>scm:git:git://github.com/codebottle-io/codebottle-java.git</connection>
27+
<developerConnection>scm:git:ssh://github.com/codebottle-io/codebottle-java.git</developerConnection>
28+
<url>https://github.com/codebottle-io/codebottle-java</url>
29+
</scm>
30+
<dependencies>
31+
<dependency>
32+
<groupId>com.squareup.okhttp3</groupId>
33+
<artifactId>okhttp</artifactId>
34+
<version>4.1.0</version>
35+
<scope>runtime</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
<version>2.10.0.pr1</version>
41+
<scope>runtime</scope>
42+
</dependency>
43+
</dependencies>
44+
</project>

0 commit comments

Comments
 (0)