Skip to content

Commit 85802fe

Browse files
Update pom.xml
1 parent 171afc7 commit 85802fe

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

.github/pom.xml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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+
<!-- This module was also published with a richer model, Gradle metadata, -->
5+
<!-- which should be used instead. Do not delete the following line which -->
6+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
7+
<!-- that they should prefer consuming it instead. -->
8+
<!-- do_not_remove: published-with-gradle-metadata -->
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>club.minnced</groupId>
11+
<artifactId>discord-webhooks</artifactId>
12+
<version>0.7.3</version>
13+
<name>discord-webhooks</name>
14+
<description>Provides easy to use bindings for the Discord Webhook API</description>
15+
<url>https://github.com/MinnDevelopment/discord-webhooks</url>
16+
<licenses>
17+
<license>
18+
<name>The Apache Software License, Version 2.0</name>
19+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
<developers>
24+
<developer>
25+
<id>Minn</id>
26+
<name>Florian Spieß</name>
27+
<email>business@minnced.club</email>
28+
</developer>
29+
</developers>
30+
<scm>
31+
<connection>scm:git:git://github.com/MinnDevelopment/discord-webhooks</connection>
32+
<developerConnection>scm:git:ssh:git@github.com:MinnDevelopment/discord-webhooks</developerConnection>
33+
<url>https://github.com/MinnDevelopment/discord-webhooks</url>
34+
</scm>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.slf4j</groupId>
38+
<artifactId>slf4j-api</artifactId>
39+
<version>1.7.32</version>
40+
<scope>compile</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.squareup.okhttp3</groupId>
44+
<artifactId>okhttp</artifactId>
45+
<version>3.14.9</version>
46+
<scope>compile</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.json</groupId>
50+
<artifactId>json</artifactId>
51+
<version>20210307</version>
52+
<scope>compile</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.jetbrains</groupId>
56+
<artifactId>annotations</artifactId>
57+
<version>22.0.0</version>
58+
<scope>runtime</scope>
59+
</dependency>
60+
</dependencies>
61+
</project>

0 commit comments

Comments
 (0)