Skip to content

Commit a73313a

Browse files
icon
1 parent 1d5f158 commit a73313a

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

.icon.jpg

3.51 KB
Loading

pom.xml

Lines changed: 32 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,30 @@
88
<artifactId>platformchat</artifactId>
99
<version>1.0</version>
1010
<packaging>jar</packaging>
11-
1211
<name>PlatformChat</name>
12+
<description>A simple Bukkit plugin that formats chat for Java and Bedrock players.</description>
13+
<url>https://github.com/aspauldingcode/PlatformChat</url>
14+
15+
<licenses>
16+
<license>
17+
<name>MIT License</name>
18+
<url>https://opensource.org/licenses/MIT</url>
19+
</license>
20+
</licenses>
21+
22+
<developers>
23+
<developer>
24+
<id>aspauldingcode</id>
25+
<name>Alex Spaulding</name>
26+
<url>https://github.com/aspauldingcode</url>
27+
</developer>
28+
</developers>
29+
30+
<scm>
31+
<url>https://github.com/aspauldingcode/PlatformChat</url>
32+
<connection>scm:git:git://github.com/aspauldingcode/PlatformChat.git</connection>
33+
<developerConnection>scm:git:ssh://git@github.com:aspauldingcode/PlatformChat.git</developerConnection>
34+
</scm>
1335

1436
<dependencies>
1537
<!-- Spigot API -->
@@ -38,23 +60,27 @@
3860
</dependencies>
3961

4062
<repositories>
41-
<!-- Spigot -->
4263
<repository>
4364
<id>spigot-repo</id>
4465
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
4566
</repository>
46-
47-
<!-- PlaceholderAPI -->
4867
<repository>
4968
<id>placeholderapi</id>
5069
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
5170
</repository>
52-
53-
<!-- Floodgate (OpenCollab) -->
5471
<repository>
5572
<id>opencollab-snapshots</id>
5673
<url>https://repo.opencollab.dev/main/</url>
5774
</repository>
5875
</repositories>
76+
77+
<distributionManagement>
78+
<repository>
79+
<id>github</id>
80+
<name>GitHub Packages</name>
81+
<url>https://maven.pkg.github.com/aspauldingcode/PlatformChat</url>
82+
</repository>
83+
</distributionManagement>
84+
5985
</project>
6086

0 commit comments

Comments
 (0)