Skip to content

Commit

Permalink
Add maven repository for API
Browse files Browse the repository at this point in the history
  • Loading branch information
neziw committed Dec 24, 2024
1 parent 2e0e3c8 commit 3c1f720
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
Binary file removed libs/RealPermissions.jar
Binary file not shown.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,15 @@
<defaultGoal>clean install</defaultGoal>
</build>

<distributionManagement>
<snapshotRepository>
<id>neziw-repo</id>
<url>https://repo.neziw.ovh/snapshots</url>
</snapshotRepository>
<repository>
<id>neziw-repo</id>
<url>https://repo.neziw.ovh/releases</url>
</repository>
</distributionManagement>

</project>
7 changes: 7 additions & 0 deletions realmines-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
<version>1.8.2</version>
<packaging>jar</packaging>

<parent>
<groupId>joserodpt.realmines</groupId>
<artifactId>realmines-parent</artifactId>
<version>1.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>RealMinesAPI</name>

<properties>
Expand Down
21 changes: 16 additions & 5 deletions realmines-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
<version>1.8.2</version>
<packaging>jar</packaging>

<parent>
<groupId>joserodpt.realmines</groupId>
<artifactId>realmines-parent</artifactId>
<version>1.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>RealMinesPlugin</name>
<description>Simple, Easy to Use and Configurable Mines plugin.</description>

Expand Down Expand Up @@ -114,6 +121,11 @@
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
<repository>
<id>neziw-repo-releases</id>
<name>Reposilite Repository</name>
<url>https://repo.neziw.ovh/releases</url>
</repository>
</repositories>

<dependencyManagement>
Expand Down Expand Up @@ -177,11 +189,10 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>joserodpt.realpermissions</groupId>
<artifactId>realpermissions</artifactId>
<version>0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/../libs/RealPermissions.jar</systemPath>
<groupId>joserodpt</groupId>
<artifactId>realpermissions-api</artifactId>
<version>0.4.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 3c1f720

Please sign in to comment.