Browse Source

add repo.spaceio.xyz to distribution managment

MasterCake 3 years ago
parent
commit
eba7bba7fe
1 changed files with 34 additions and 17 deletions
  1. 34 17
      pom.xml

+ 34 - 17
pom.xml

@@ -1,27 +1,32 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<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">
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>TelegramChat</groupId>
-	<artifactId>TelegramChat</artifactId>
-	<version>1.0.16</version>
+	<groupId>xyz.spaceio</groupId>
+	<artifactId>telegramchat</artifactId>
+	<version>1.0.16-SNAPSHOT</version>
 	<name>TelegramChat</name>
 	<url>https://www.spigotmc.org/resources/telegramchat.16576/</url>
-	
+
 	<properties>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	</properties>
-	
+
 	<repositories>
+		<repository>
+			<id>spaceio-repo</id>
+			<url>https://repo.spaceio.xyz/repository/maven-public/</url>
+		</repository>
 		<repository>
 			<id>spigot-repo</id>
 			<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
 		</repository>
-	    <repository>
-	        <id>jitpack.io</id>
-	        <url>https://jitpack.io</url>
-	    </repository>
+		<repository>
+			<id>jitpack.io</id>
+			<url>https://jitpack.io</url>
+		</repository>
 	</repositories>
-	
+
 	<dependencies>
 		<dependency>
 			<groupId>org.bukkit</groupId>
@@ -29,13 +34,25 @@
 			<version>1.12.2-R0.1-SNAPSHOT</version>
 			<scope>provided</scope>
 		</dependency>
-	    <dependency>
-	        <groupId>com.github.MilkBowl</groupId>
-	        <artifactId>VaultAPI</artifactId>
-	        <version>1.7</version>
-	        <scope>provided</scope>
-	    </dependency>
+		<dependency>
+			<groupId>com.github.MilkBowl</groupId>
+			<artifactId>VaultAPI</artifactId>
+			<version>1.7</version>
+			<scope>provided</scope>
+		</dependency>
 	</dependencies>
+	<distributionManagement>
+		<snapshotRepository>
+			<id>spaceio-snapshots</id>
+			<name>snapshots</name>
+			<url>https://repo.spaceio.xyz/repository/maven-snapshots/</url>
+		</snapshotRepository>
+		<repository>
+			<id>spaceio-releases</id>
+			<name>releases</name>
+			<url>https://repo.spaceio.xyz/repository/maven-releases/</url>
+		</repository>
+	</distributionManagement>
 	<build>
 		<!-- Uses the properties in this file for plugin.yml and config.yml -->
 		<resources>