Remove local dependencies and upload to repo

This commit is contained in:
kristoffer 2023-04-28 23:56:12 +02:00
parent bcaca3cae6
commit df320eb0ce
No known key found for this signature in database
GPG Key ID: A14590146063A150

63
pom.xml
View File

@ -48,38 +48,6 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>3.1.0</version> <version>3.1.0</version>
<executions>
<execution>
<id>hack-binary</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/LocalJars/Residence4.9.1.9.jar</file>
<groupId>com.bekvon.bukkit</groupId>
<artifactId>residence</artifactId>
<version>4.9.1.9</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
<execution>
<id>hack-binary-2</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/LocalJars/hClaims.jar</file>
<groupId>com.hakan</groupId>
<artifactId>claimapi</artifactId>
<version>2.1.8</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<!-- Shade PaperLib into project --> <!-- Shade PaperLib into project -->
@ -121,6 +89,11 @@
</build> </build>
<repositories> <repositories>
<repository>
<id>ronanplugins-private</id>
<name>RonanPlugins Repository</name>
<url>https://repo.ronanplugins.com/private</url>
</repository>
<!-- GitHub based Repos --> <!-- GitHub based Repos -->
<repository> <repository>
<id>jitpack.io</id> <id>jitpack.io</id>
@ -246,14 +219,6 @@
<version>6.28.11</version> <version>6.28.11</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Residence v4.9.1.9 (https://www.spigotmc.org/resources/residence.11480/) (LOCAL REPO) -->
<!-- Installation: mvn install:install-file -Dfile=<path-to-project>/LocalJars/Residence4.9.1.9 -DgroupId=com.bekvon.bukkit -DartifactId=Residence -Dversion=<version> -Dpackaging=jar -->
<dependency>
<groupId>com.bekvon.bukkit</groupId>
<artifactId>Residence</artifactId>
<version>4.9.1.9</version>
<scope>provided</scope>
</dependency>
<!-- ProtocolLib --> <!-- ProtocolLib -->
<dependency> <dependency>
<groupId>com.comphenix.protocol</groupId> <groupId>com.comphenix.protocol</groupId>
@ -288,14 +253,6 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- ClaimAPI for Pandomim on Discord (https://www.spigotmc.org/resources/hclaims.90540/) (LOCAL REPO) -->
<!-- Installation: mvn install:install-file -Dfile=<path-to-project>/LocalJars/hClaims -DgroupId=com.hakan -DartifactId=claimapi -Dversion=<version> -Dpackaging=jar -->
<dependency>
<groupId>com.hakan</groupId>
<artifactId>claimapi</artifactId>
<version>2.1.8</version>
<scope>provided</scope>
</dependency>
<!-- GriefDefender (https://www.spigotmc.org/resources/griefdefender.68900/) --> <!-- GriefDefender (https://www.spigotmc.org/resources/griefdefender.68900/) -->
<dependency> <dependency>
<groupId>com.github.bloodmc</groupId> <groupId>com.github.bloodmc</groupId>
@ -385,5 +342,15 @@
<version>0.2.0</version> <version>0.2.0</version>
<scope>compile</scope> <scope>compile</scope>
</dependency--> </dependency-->
<dependency>
<groupId>com.ronanplugins</groupId>
<artifactId>hClaims</artifactId>
<version>2.1.8</version>
</dependency>
<dependency>
<groupId>com.ronanplugins</groupId>
<artifactId>Residence</artifactId>
<version>4.9.1.9</version>
</dependency>
</dependencies> </dependencies>
</project> </project>