Skip to content

Commit

Permalink
Move from Jitpack to the official BlueColored Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Jul 20, 2024
1 parent fc6eb22 commit 7c4a2c3
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Now also has functions for Native BlueMap Addons!
## Installation
There are two ways to use this library:

### Import as a Maven/Gradle dependency
Visit https://jitpack.io/#TechnicJelle/BMUtils for detailed instructions
on how to add this library to your project.
### Import as a dependency in Maven/Gradle (Recommended)
Visit https://repo.bluecolored.de/#/releases/com/technicjelle/BMUtils
for instructions on how to add this library as a dependency to your project.

You may want to shade the library!

Expand Down
2 changes: 0 additions & 2 deletions jitpack.yml

This file was deleted.

45 changes: 43 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,40 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<distributionManagement>
<repository>
<id>bluecolored-releases</id>
<url>https://repo.bluecolored.de/releases</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.7.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>deploy</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>https://repo.bluecolored.de/javadoc/releases/de/bluecolored/bluemap/BlueMapAPI/2.7.2/raw/</link>
Expand All @@ -29,6 +57,19 @@
</links>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 7c4a2c3

Please sign in to comment.