mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-17 08:27:43 +01:00
69 lines
2.6 KiB
Diff
69 lines
2.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
Date: Sat, 4 May 2019 00:57:16 -0500
|
|
Subject: [PATCH] Rebrand
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index 4516ba097e8afc3e422efc368311fa66e967c05a..f0696d8c1dede705f6dd3fd0162864dfd42d2fdf 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -1,20 +1,19 @@
|
|
-
|
|
<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>
|
|
<parent>
|
|
- <groupId>com.tuinity</groupId>
|
|
- <artifactId>tuinity-parent</artifactId>
|
|
+ <groupId>net.pl3x.purpur</groupId>
|
|
+ <artifactId>purpur-parent</artifactId>
|
|
<version>dev-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
- <artifactId>tuinity-api</artifactId>
|
|
+ <artifactId>purpur-api</artifactId>
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
- <name>Tuinity-API</name>
|
|
- <url>https://github.com/Spottedleaf/Tuinity</url>
|
|
+ <name>Purpur-API</name>
|
|
+ <url>https://github.com/pl3xgaming/Purpur</url>
|
|
<description>An enhanced plugin API for Minecraft servers.</description>
|
|
|
|
<properties>
|
|
@@ -149,7 +148,7 @@
|
|
</dependencies>
|
|
|
|
<build>
|
|
- <defaultGoal>clean install</defaultGoal>
|
|
+ <defaultGoal>clean install javadoc:javadoc</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.md-5</groupId>
|
|
@@ -227,6 +226,14 @@
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <id>attach-javadocs</id>
|
|
+ <goals>
|
|
+ <goal>jar</goal>
|
|
+ </goals>
|
|
+ </execution>
|
|
+ </executions>
|
|
<configuration>
|
|
<links>
|
|
<link>https://guava.dev/releases/21.0/api/docs/</link>
|
|
@@ -234,6 +241,7 @@
|
|
<link>https://javadoc.io/doc/org.jetbrains/annotations-java5/19.0.0/</link>
|
|
<link>https://javadoc.io/doc/net.md-5/bungeecord-chat/1.16-R0.3/</link>
|
|
</links>
|
|
+ <additionalOptions>-Xdoclint:none</additionalOptions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|